diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-04-06 11:20:10 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-04-06 11:20:10 +0200 |
commit | 1405eb6ea3fe95fcb9c205c6c4c250433d48819c (patch) | |
tree | 4845cce466ea882369242290855fc5de0c0ebb3d /templates/account.html.ep | |
parent | 6630cdcd9e943a9a8c2cce49b6b5e59bd6ef6710 (diff) |
Add password change form
Diffstat (limited to 'templates/account.html.ep')
-rw-r--r-- | templates/account.html.ep | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/account.html.ep b/templates/account.html.ep index 99178d9..dd808a6 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -39,6 +39,10 @@ <td><%= $acc->{email} %></td> </tr> <tr> + <th scope="row">Passwort</th> + <td><a href="/change_password" class="waves-effect waves-light btn">ändern</a></td> + </tr> + <tr> <th scope="row">Registriert am</th> <td><%= $acc->{registered_at}->strftime('%d.%m.%Y %H:%M') %></td> </tr> @@ -46,9 +50,7 @@ </div> </div> <div class="row"> - <div class="col s1 m1 l3"> - </div> - <div class="col s10 m10 l6 center-align"> + <div class="col s12 m12 l12 center-align"> %= form_for 'logout' => begin %= csrf_field <button class="btn waves-effect waves-light" type="submit" name="action" value="logout"> @@ -56,8 +58,6 @@ </button> %= end </div> - <div class="col s1 m1 l3"> - </div> </div> % my $token = get_api_token(); |