diff options
Diffstat (limited to 'templates/admin_login.rs.html')
-rw-r--r-- | templates/admin_login.rs.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/admin_login.rs.html b/templates/admin_login.rs.html new file mode 100644 index 0000000..de31c44 --- /dev/null +++ b/templates/admin_login.rs.html @@ -0,0 +1,12 @@ +@use super::base_html; + +@() + +@:base_html({ +<form action="/admin/login" method="post"> + <label for="password">admin password:</label> + <input type="text" id="password" name="password" required="true" /> + <button type="submit">log in</button> +</form> +}) + |