Proper contact form with Foundation grid
This commit is contained in:
parent
e1861ff4bf
commit
b89f976776
1 changed files with 27 additions and 4 deletions
|
@ -15,10 +15,33 @@ There a couple of ways you can get in touch with me:
|
|||
|
||||
For those using GPG/PGP, my public key ID is [6E1A4E79](http://pgp.mit.edu/pks/lookup?op=get&search=0x013FA50B6E1A4E79).
|
||||
|
||||
#### Contact form
|
||||
|
||||
<form action="//formspree.io/lbeltrame@kde.org" method="POST">
|
||||
Your name <input type="text" name="name" placeholder="Enter your name here">
|
||||
Your email <input type="email" name="_replyto">
|
||||
<input type="text" name="_gotcha" style="display:none" />
|
||||
<input type="hidden" name="_subject" value="New form submission" />
|
||||
<input type="submit" value="Send">
|
||||
<div class="row">
|
||||
<div class="small-6 medium-6 columns">
|
||||
<label>Name</label>
|
||||
<input name="name" id="name" class="form-control" type="text" value="">
|
||||
</div>
|
||||
<div class="small-6 medium-6 columns">
|
||||
<label>E-mail</label>
|
||||
<input name="email" id="email" class="form-control" type="text" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="small-12 medium-12 columns">
|
||||
<label>Subject</label>
|
||||
<input name="_subject" id="subject" class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="small-12 medium-12 columns">
|
||||
<label>Message</label>
|
||||
<textarea name="message" id="message" rows="8" class="form-control"></textarea>
|
||||
</div>
|
||||
<div class="small-12 medium-12 columns"><br/>
|
||||
<input type="submit" class="button" value="Submit Message">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
Reference in a new issue