godfather/contents/contact.md

34 lines
1.1 KiB
Markdown
Raw Normal View History

2013-11-01 16:34:18 +02:00
---
template: index.html
---
## Contact us
<p>You can send us your message using a form below, or you can use the information at the bottom of the page.</p>
<form role="form" class="form-horizontal" method="POST" action="contact.php">
<div class="form-group">
<label for="name" class="col-sm-2">Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="name" placeholder="Enter your name">
</div>
</div>
<input type="hidden" name="email"> <!-- Fake hidden field for spam blocking -->
<div class="form-group">
<label for="email" class="col-sm-2">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" name="e-mail" placeholder="Enter your return e-mail address">
</div>
</div>
<div class="form-group">
<label for="phone" class="col-sm-2">Message</label>
<div class="col-sm-10">
<textarea class="form-control" name="message" placeholder="Enter your message"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Send</button>
</div>
</div>
</form>