This repository has been archived on 2022-06-15. You can view files and clone it, but cannot push or open issues/pull-requests.
selfprivacy-alps/themes/sourcehut/login.html

31 lines
686 B
HTML

{{template "head.html" .Global}}
{{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"}}