19 lines
542 B
HTML
19 lines
542 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{template "head.html" .}} <!-- Include header template -->
|
|
|
|
<body>
|
|
{{template "header.html" .}}
|
|
<h1>Add Trainer</h1>
|
|
<a href="/">Back to Home</a>
|
|
<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>
|
|
</body>
|
|
</html>
|