forked from cdhigh/KindleEar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminmgrpwd.html
26 lines (26 loc) · 1.04 KB
/
adminmgrpwd.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends "base.html" %}
{% block menubar -%}
{% endblock -%}
{% block content -%}
{% if tips -%}
<p style="color:red;font-weight:bold;">{{tips}}</p>
{% endif -%}
<form class="pure-form pure-form-aligned" action="" method="POST">
<div class="pure-control-group">
<label for="u">{{_("Username")}}</label>
<input id="u" name="u" type="text" placeholder="Username"
{% if username %}value="{{username}}"{% endif %} />
</div>
<div class="pure-control-group">
<label for="p1">{{_("New password")}}</label>
<input id="p1" name="p1" type="password" placeholder="Password" />
</div>
<div class="pure-control-group">
<label for="p2">{{_("Confirm password")}}</label>
<input id="p2" name="p2" type="password" placeholder="Password" />
</div>
<div class="pure-controls">
<button type="submit" class="pure-button pure-button-primary">{{_("Confirm Change")}}</button>
</div>
</form>
{% endblock -%}