summaryrefslogtreecommitdiff
path: root/views/http/account.twig
blob: 8b32feb04a238d585b5bc7ebc43fd445ef494d25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends 'base.twig' %}

{% block main %}
<h1>Account</h1>

<form action="/account" method="post">
  <label>
    Username
    <input type="text" name="username" value="{{ user.username }}">
  </label>
  <label>
    E-Mail
    <input type="email" name="email" value="{{ user.email }}">
  </label>
  <label>
    Password
    <input type="password" name="password">
  </label>

  <input type="submit" value="Save">
</form>
{% endblock %}