diff options
| author | Darin Dimitroff <d@thecrazyones.agency> | 2017-01-03 11:46:35 +0200 |
|---|---|---|
| committer | Darin Dimitroff <d@thecrazyones.agency> | 2017-01-03 11:46:35 +0200 |
| commit | 748564be8a54f07761eea87c1bb84009e16a8593 (patch) | |
| tree | 743c6a2105afd7fadb83e9e68aa611551a188201 /site/layouts/partials/contact-form.html | |
| parent | 7163e7d16db40a3382167dcec145cd033114227a (diff) | |
WIP
Signed-off-by: Darin Dimitroff <d@thecrazyones.agency>
Diffstat (limited to 'site/layouts/partials/contact-form.html')
| -rw-r--r-- | site/layouts/partials/contact-form.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/site/layouts/partials/contact-form.html b/site/layouts/partials/contact-form.html new file mode 100644 index 0000000..449a52d --- /dev/null +++ b/site/layouts/partials/contact-form.html @@ -0,0 +1,33 @@ +<!-- Contact --> +<div class="mb4"> + <h4 class="f3 b lh-title mb3 tc">Drop us a line below</h4> + + <form action=""> + <div class="flex-l mhn1-l"> + <!-- Name --> + <div class="ph1-l w-50-l"> + <fieldset> + <input type="text" id="name" placeholder="Name" class="w-100 mb2"> + <label for="name">Name</label> + </fieldset> + </div> + <!-- Email --> + <div class="ph1-l w-50-l"> + <fieldset> + <input type="email" id="email" placeholder="Email" class="w-100 mb2"> + <label for="email">Email</label> + </fieldset> + </div> + </div> + + <!-- Message --> + <fieldset> + <textarea name="name" placeholder="Your message" rows="8" cols="80" id="message" class="w-100"></textarea> + <label for="message">Your message</label> + </fieldset> + <!-- Button --> + <div class="tc"> + <button type="submit" class="btn w-100 w-auto-ns raise">Submit</button> + </div> + </form> +</div> |
