By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 user-settings.html

View raw Download
text/html • 3.73 kiB
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}
3
{% trans %}User settings{% endtrans %}
4
{% endblock %}
5
{% block breadcrumbs %}
6
<li><a href="/settings">{% trans %}Settings{% endtrans %}</a></li>
7
{% endblock %}
8
{% block content %}
9
<x-frame style="--width: 768px;">
10
<h1>{% trans %}User settings{% endtrans %}</h1>
11
<article class="card">
12
<section class="card-main">
13
<h2>{% trans %}Basic information{% endtrans %}</h2>
14
<p>{% trans %}Username: {{ user.username }}{% endtrans %}</p>
15
<p>{% trans %}Email address: {{ user.email }}{% endtrans %}</p>
16
<x-buttonbox>
17
<a class="button" href="password">{% trans %}Change password{% endtrans %}</a>
18
<a class="button" href="email">{% trans %}Change email{% endtrans %}</a>
19
</x-buttonbox>
20
</section>
21
</article>
22
<article class="card">
23
<section class="card-main">
24
<form method="post">
25
<h2>{% trans %}Profile{% endtrans %}</h2>
26
<x-vbox>
27
<x-vbox class="nopad">
28
<label for="displayname">{% trans %}Friendly name{% endtrans %}</label>
29
<input id="displayname" name="displayname" value="{% if user.display_name %}{{ user.display_name }}{% endif %}" placeholder="{{ user.username }}">
30
</x-vbox>
31
<x-vbox class="nopad">
32
<label for="url">{% trans %}Link to your website{% endtrans %}</label>
33
<input id="url" name="url" value="{% if user.url %}{{ user.url }}{% endif %}" type="url">
34
</x-vbox>
35
<x-vbox class="nopad">
36
<x-hbox style="width: 100%; align-items: space-between;">
37
<x-vbox style="flex-grow: 1;" class="nopad">
38
<label for="company">{% trans %}Company or school{% endtrans %}</label>
39
<input id="company" name="company" value="{% if user.company %}{{ user.company }}{% endif %}">
40
</x-vbox>
41
<x-vbox style="flex-grow: 1;" class="nopad">
42
<label for="companyurl">{% trans %}Link to the company's website{% endtrans %}</label>
43
<input id="companyurl" name="companyurl" value="{% if user.company_url %}{{ user.company_url }}{% endif %}" type="url">
44
</x-vbox>
45
</x-hbox>
46
</x-vbox>
47
<x-vbox class="nopad">
48
<label><input name="showmail" value="showmail" {% if user.show_mail %}checked{% endif %} type="checkbox">{% trans %}Show email on my profile{% endtrans %}</label>
49
</x-vbox>
50
<x-vbox class="nopad">
51
<label for="location">{% trans %}Location{% endtrans %}</label>
52
<input id="location" name="location" value="{% if user.location %}{{ user.location }}{% endif %}" type="text">
53
</x-vbox>
54
<x-vbox class="nopad">
55
<label for="bio">{% trans %}Bio{% endtrans %}</label>
56
<textarea id="bio" name="bio" rows="4">{% if user.bio %}{{ user.bio }}{% endif %}</textarea>
57
</x-vbox>
58
<button type="submit">{% trans %}Update profile{% endtrans %}</button>
59
</x-vbox>
60
</form>
61
</section>
62
</article>
63
</x-frame>
64
{% endblock %}
65