12 lines
No EOL
393 B
HTML
12 lines
No EOL
393 B
HTML
{{ template "preamble.html" }}
|
|
<h1>Add Trainer</h1>
|
|
<form action="/trainers/add" method="POST">
|
|
<label for="name">Name:</label>
|
|
<input type="text" id="name" name="name" required><br><br>
|
|
|
|
<label for="email">Email:</label>
|
|
<input type="email" id="email" name="email" required><br><br>
|
|
|
|
<button type="submit">Add Trainer</button>
|
|
</form>
|
|
{{template "epilogue.html" }} |