diff options
Diffstat (limited to 'templates/account.html.ep')
-rw-r--r-- | templates/account.html.ep | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/account.html.ep b/templates/account.html.ep index 076adf1..fe1280f 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -30,15 +30,16 @@ </tr> <tr> <th scope="row">Mail</th> - <td><%= $acc->{email} %><a href="/change_mail" style="margin-left: 1em;"><i class="material-icons">edit</i> ändern</a></td> + <td><a href="/change_mail"><i class="material-icons">edit</i></a><%= $acc->{email} %></td> </tr> <tr> <th scope="row">Passwort</th> - <td><a href="/change_password"><i class="material-icons">edit</i> ändern</a></td> + <td><a href="/change_password"><i class="material-icons">edit</i></a></td> </tr> <tr> <th scope="row">Privatsphäre</th> <td> + <a href="/account/privacy"><i class="material-icons">edit</i></a> % if ($acc->{is_public} == 0) { Keine öffentlichen Daten % } @@ -48,7 +49,7 @@ % if ($acc->{is_public} & 0x02) { Status % } - <a href="/account/privacy"><i class="material-icons">edit</i> ändern</a></td> + </td> </tr> <tr> <th scope="row">Registriert am</th> |