alps/themes/sourcehut/login.html
Simon Ser e93346ffa9
Remove the public/ directory
Now that all templates are provided by plugins, there's no need to have
a public/ directory. Themes can be in /themes instead of /public/themes.
2019-12-16 12:58:21 +01:00

38 lines
857 B
HTML

{{template "head.html"}}
<nav class="container navbar navbar-light navbar-expand-sm">
<div class="col-md-12">
<a class="navbar-brand" href="/">
koushin
<span class="text-danger">webmail</span>
</a>
</div>
</nav>
<div class="container">
<form method="post" action="/login" class="col-md-6">
<div class="form-group">
<label for="username">Username</label>
<input
class="form-control"
type="text"
name="username"
id="username"
autofocus />
</div>
<div class="form-group">
<label for="password">Password</label>
<input
class="form-control"
type="password"
name="password"
id="password" />
</div>
<button
type="submit"
class="btn btn-primary"
>Log in</button>
</form>
</div>
{{template "foot.html"}}