lockserver/frontend/add-code.html

10 lines
343 B
HTML
Raw Normal View History

2024-11-23 03:50:18 +00:00
{{ 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" }}