forked from inclusive-design/idi-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailing-list-form.php
18 lines (18 loc) · 1013 Bytes
/
mailing-list-form.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="idi-mailing-list-reminder">
<div class="idi-mailing-list-signup">
<h3>Stay updated,<br/>join our mailing list:</h3>
<form id="idiMailingListSignup" method="post" action="<?php bloginfo('stylesheet_directory'); ?>/mailinglist.php" onsubmit="return idi.mailingListSignup()">
<div class="idi-invalid-email-warning" style="display: none;">Please enter a valid email address.</div>
<input type="email" name="listEmail" id="listEmail" placeholder="Your email address" title="Please type your email address here and press enter to join our mailing list." required />
</form>
</div>
<div class="idi-loading"></div>
<div class="idi-signup-success" style="display: none;">
<h3>Thank you!</h3>
<p>A welcome email has been sent to <span class="idi-email-signedup">your email address</span>.</p>
</div>
<div class="idi-signup-error" style="display: none;">
<h3>Hm...</h3>
<p>Sign-up doesn't seem to be working right now. Please try again a bit later.</p>
</div>
</div>