dex/web/templates/password.html

31 lines
1 KiB
HTML
Raw Normal View History

2016-08-26 01:33:41 +05:30
{{ template "header.html" . }}
2016-12-02 01:48:12 +05:30
<div class="theme-panel">
<h2 class="theme-heading">Log in to Your Account</h2>
2016-08-26 01:33:41 +05:30
<form method="post" action="{{ .PostURL }}">
2016-12-02 01:48:12 +05:30
<div class="theme-form-row">
<div class="theme-form-label">
2016-08-26 01:33:41 +05:30
<label for="userid">Username</label>
</div>
2016-12-02 01:48:12 +05:30
<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-26 01:33:41 +05:30
</div>
2016-12-02 01:48:12 +05:30
<div class="theme-form-row">
<div class="theme-form-label">
2016-08-26 01:33:41 +05:30
<label for="password">Password</label>
</div>
2016-12-02 01:48:12 +05:30
<input tabindex="2" required id="password" name="password" type="password" class="theme-form-input" placeholder="password" {{ if .Invalid }} autofocus {{ end }}/>
2016-08-26 01:33:41 +05:30
</div>
{{ if .Invalid }}
2016-12-02 01:48:12 +05:30
<div class="dex-error-box">
2016-08-26 01:33:41 +05:30
Invalid username and password.
</div>
{{ end }}
2016-12-02 01:48:12 +05:30
<button tabindex="3" type="submit" class="dex-btn theme-btn--primary">Login</button>
2016-08-26 01:33:41 +05:30
</form>
</div>
{{ template "footer.html" . }}