summaryrefslogblamecommitdiffstats
path: root/templates/admin_login.rs.html
blob: de31c44ea6eacd034db5a93a6d6502960815b135 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
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>
})