2020-05-13 14:58:22 +00:00
|
|
|
{{template "head.html" .Global}}
|
2020-02-12 00:20:21 +00:00
|
|
|
{{template "nav.html" .Global}}
|
2019-12-12 18:54:57 +00:00
|
|
|
|
|
|
|
<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"}}
|