mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
f487cd0029
Former-commit-id: 98895c34115ec2076b431332f0ffe9645adf7590
15 lines
364 B
HTML
15 lines
364 B
HTML
{{if .Success}}
|
|
<h1>Thanks for your message!</h1>
|
|
{{else}}
|
|
<h1>Contact</h1>
|
|
<form method="POST">
|
|
<label>Email:</label><br />
|
|
<input type="text" name="email"><br />
|
|
<label>Subject:</label><br />
|
|
<input type="text" name="subject"><br />
|
|
<label>Message:</label><br />
|
|
<textarea name="message"></textarea><br />
|
|
<input type="submit">
|
|
</form>
|
|
{{end}}
|