mirror of
https://github.com/ipdb/website.git
synced 2024-11-13 16:54:50 +01:00
Matthias Kretschmann
fb2895a681
* create contact form * create newsletter form * create contact page * shuffle around connect section content
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>
|