]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/people/passwd.html
Update Christman campaign copy
[ipfire.org.git] / src / templates / people / passwd.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ account }} - {{ _("Change Password") }}{% end block %}
4
5 {% block main %}
6 <div class="row justify-content-center">
7 <div class="col col-md-8">
8 <h4 class="mb-4">{{ _("Change Password") }}</h4>
9
10 <form method="POST" action="">
11 {% raw xsrf_form_html() %}
12
13 <div class="form-group">
14 <label>{{ _("Current Password") }}</label>
15
16 <input type="password" class="form-control" name="password"
17 placeholder="{{ _("Current Password") }}">
18 </div>
19
20 {% module Password(account) %}
21
22 <input class="btn btn-primary btn-block" type="submit" value="{{ _("Change Password") }}">
23 </form>
24 </div>
25 </div>
26 {% end block %}