diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-14 07:04:29 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-14 07:04:29 +0300 |
commit | 69deeefae835fa48b677297217bb622e0460401c (patch) | |
tree | 6ad630c6b94ef5ebdf287f455851734e5f7ae018 /Views/Home/_SignUp.cshtml | |
parent | e922edc785a34f219ded4d2a3e5538235f7ae182 (diff) |
Split Index into partials
Diffstat (limited to 'Views/Home/_SignUp.cshtml')
-rw-r--r-- | Views/Home/_SignUp.cshtml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/Views/Home/_SignUp.cshtml b/Views/Home/_SignUp.cshtml new file mode 100644 index 0000000..6ffabcc --- /dev/null +++ b/Views/Home/_SignUp.cshtml @@ -0,0 +1,51 @@ +<section class="signup-section" id="signup"> + <div class="container px-4 px-lg-5"> + <div class="row gx-4 gx-lg-5"> + <div class="col-md-10 col-lg-8 mx-auto text-center"> + <i class="far fa-paper-plane fa-2x mb-2 text-white"></i> + <h2 class="text-white mb-5">Subscribe to receive updates!</h2> + <!-- * * * * * * * * * * * * * * *--> + <!-- * * SB Forms Contact Form * *--> + <!-- * * * * * * * * * * * * * * *--> + <!-- This form is pre-integrated with SB Forms.--> + <!-- To make this form functional, sign up at--> + <!-- https://startbootstrap.com/solution/contact-forms--> + <!-- to get an API token!--> + <form class="form-signup" id="contactForm" data-sb-form-api-token="API_TOKEN"> + <!-- Email address input--> + <div class="row input-group-newsletter"> + <div class="col"><input class="form-control" id="emailAddress" type="email" + placeholder="Enter email address..." aria-label="Enter email address..." + data-sb-validations="required,email" /></div> + <div class="col-auto"><button class="btn btn-primary disabled" id="submitButton" + type="submit">Notify Me!</button></div> + </div> + <div class="invalid-feedback mt-2" data-sb-feedback="emailAddress:required">An email is + required.</div> + <div class="invalid-feedback mt-2" data-sb-feedback="emailAddress:email">Email is not valid. + </div> + <!-- Submit success message--> + <!----> + <!-- This is what your users will see when the form--> + <!-- has successfully submitted--> + <div class="d-none" id="submitSuccessMessage"> + <div class="text-center mb-3 mt-2 text-white"> + <div class="fw-bolder">Form submission successful!</div> + To activate this form, sign up at + <br /> + <a + href="https://startbootstrap.com/solution/contact-forms">https://startbootstrap.com/solution/contact-forms</a> + </div> + </div> + <!-- Submit error message--> + <!----> + <!-- This is what your users will see when there is--> + <!-- an error submitting the form--> + <div class="d-none" id="submitErrorMessage"> + <div class="text-center text-danger mb-3 mt-2">Error sending message!</div> + </div> + </form> + </div> + </div> + </div> +</section>
\ No newline at end of file |