This repository has been archived on 2023-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
dex/web/templates/password.html

31 lines
1.0 KiB
HTML
Raw Normal View History

2016-08-25 20:03:41 +00:00
{{ template "header.html" . }}
2016-12-01 20:18:12 +00:00
<div class="theme-panel">
<h2 class="theme-heading">Log in to Your Account</h2>
2016-08-25 20:03:41 +00:00
<form method="post" action="{{ .PostURL }}">
2016-12-01 20:18:12 +00:00
<div class="theme-form-row">
<div class="theme-form-label">
2016-08-25 20:03:41 +00:00
<label for="userid">Username</label>
</div>
2016-12-01 20:18:12 +00:00
<input tabindex="1" required id="login" name="login" type="text" class="theme-form-input" placeholder="username" {{ if .Username }} value="{{ .Username }}" {{ else }} autofocus {{ end }}/>
2016-08-25 20:03:41 +00:00
</div>
2016-12-01 20:18:12 +00:00
<div class="theme-form-row">
<div class="theme-form-label">
2016-08-25 20:03:41 +00:00
<label for="password">Password</label>
</div>
2016-12-01 20:18:12 +00:00
<input tabindex="2" required id="password" name="password" type="password" class="theme-form-input" placeholder="password" {{ if .Invalid }} autofocus {{ end }}/>
2016-08-25 20:03:41 +00:00
</div>
{{ if .Invalid }}
2016-12-01 20:18:12 +00:00
<div class="dex-error-box">
2016-08-25 20:03:41 +00:00
Invalid username and password.
</div>
{{ end }}
2016-12-01 20:18:12 +00:00
<button tabindex="3" type="submit" class="dex-btn theme-btn--primary">Login</button>
2016-08-25 20:03:41 +00:00
</form>
</div>
{{ template "footer.html" . }}