lockserver/frontend/add-code.html
2024-11-22 19:50:54 -08:00

9 lines
343 B
HTML

{{ template "header.html" . }}
<header>Add Code</header>
<form method="post">
<label for="name">Name: <input type="text" name="name" id="name" /></label><br />
<label for="code">Code: <input type="text" name="code" id="code" /></label><br />
<br />
<input type="submit" value="add code" />
</form>
{{ template "footer.html" }}