e93346ffa9
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.
37 lines
857 B
HTML
37 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"}}
|