mirror of
https://github.com/ipdb/website.git
synced 2024-11-14 09:14:48 +01:00
11 lines
561 B
HTML
11 lines
561 B
HTML
|
<form class="form" action="{{ config.site.forms.newsletter }}">
|
||
|
<div class="form__group required">
|
||
|
<label class="form__label" for="email">Your Email</label>
|
||
|
<input class="form__control" type="email" id="email" name="email" required placeholder=" ">
|
||
|
<span class="form__help">We will never use the contact information you submit for anything except delivering our newsletter.</span>
|
||
|
</div>
|
||
|
<div class="form__group">
|
||
|
<input class="button button-primary button--small" type="submit" value="Subscribe">
|
||
|
</div>
|
||
|
</form>
|