mirror of
https://github.com/rjNemo/go-wiki
synced 2026-06-10 20:46:44 +00:00
17 lines
535 B
HTML
17 lines
535 B
HTML
{{define "title"}} Contact Us | Go-Wiki {{end}} {{define "content"}}
|
|
<h1>Contact us</h1>
|
|
|
|
<form action="/contact/post" method="POST">
|
|
<div class="form-group">
|
|
<label for="email">Email</label>
|
|
<input type="email" class="form-control" name="email" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="message">Message</label>
|
|
<textarea class="form-control" name="message" rows="10"> </textarea>
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="submit" value="Save" class="btn btn-primary" />
|
|
</div>
|
|
</form>
|
|
{{end}}
|