18 lines
505 B
HTML
18 lines
505 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{template "head.html" .}} <!-- Include header template -->
|
|
|
|
<body>
|
|
{{template "header.html" .}}
|
|
<h1>Add New Training Area</h1>
|
|
<form action="/training-areas/add" method="post">
|
|
<label for="name">Training Area Name:</label>
|
|
<input type="text" id="name" name="name" required>
|
|
<button type="submit">Add</button>
|
|
</form>
|
|
<br>
|
|
<a href="/training-areas">Back to Training Areas</a>
|
|
<br><br>
|
|
<a href="/">Back to Home</a>
|
|
</body>
|
|
</html>
|