30 lines
678 B
HTML
30 lines
678 B
HTML
{{template "head.html"}}
|
|
{{template "nav.html" .Global}}
|
|
|
|
<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"}}
|