Files
DESKTOP-GBA0BK8\Admin 7c8c8b1c76 first commit
2023-04-08 12:19:53 -04:00

44 lines
2.4 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!-- Modal -->
<div class="modal fade float-custom-modal" id="signupModal" tabindex="-1" role="dialog" aria-labelledby="signupModalLabel" aria-hidden="true">
<div class="modal-dialog nsem-dialog" role="document">
<div class="modal-content nsem-modal-content">
<div class="modal-header nsem-modal-header">
<div class="nsem-header">
<small class="nsem-header-small">FOR FREE</small>
<h5 class="nsem-title">Sign up for Float today</h5>
<p class="nsem-subtitle">See where you can save, get exclusive tips &amp; offers, and live a better life. <br> It's the Float way to go.</p>
</div>
<button type="button" class="close nsem-close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body nsem-modal-body">
<button class="nsem-btn-1 d-flex justify-content-center aligns-item-center sign-up-google-btn">
<img src="https://www.float.sg/assets/img/google-icon.png" alt="" width="24px">
<p>Sign Up with Google</p>
</button>
<div class="text-center nsem-body-small-container">
<small class="nsem-body-small">or</small>
</div>
<form class="signup-form validate" data-action="" method="POST">
<?php wp_nonce_field('float_signup_user','float_signup_user_nonce', true, true ); ?>
<div class="form-group">
<input type="text" name="name" class="form-control nsem-form-input" placeholder="Name">
<small class="name-error text-danger form-text"></small>
</div>
<div class="form-group">
<input type="email" name="email" class="form-control nsem-form-input requried email" id="modal-email" placeholder="Email">
<small class="email-error text-danger form-text"></small>
</div>
<div class="text-center">
<button type="submit" class="nsem-btn-2">Sign Up</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- success signup modal -->
<?php echo get_template_part('template-parts/components/success-signup-modal'); ?>