blob: 33526de300a21d4667af350dced1c814440203aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
{% extends "base.html" %}
{% block title %}
{{ user.username }}
{% endblock %}
{% block content %}
<div class="box box_grey">
<h2>{{ user.username }}</h2>
<table>
<tr>
<td>Accounts:</td>
<td>
{% if user.forums_username %}
<a href="https://forum.minetest.net/memberlist.php?mode=viewprofile&un={{ user.forums_username }}">
Minetest Forum
</a>
{% elif user == current_user %}
<a href="">Link Forums Account</a>
{% endif %}
{% if (user.forums_username and user.github_username) or user == current_user %}
|
{% endif %}
{% if user.github_username %}
<a href="https://github.com/{{ user.github_username }}">GitHub</a>
{% elif user == current_user %}
<a href="{{ url_for('github_signin_page') }}">Link Github</a>
{% endif %}
{% if user == current_user %}
🌎
{% endif %}
</td>
</tr>
{% if user == current_user %}
<tr>
<td>Email:</td>
<td>
{{ user.email }} |
<a href="">{% if user.email %}change{% else %}add{% endif %}</a>
🔒
</td>
</tr>
<tr>
<td>Password:</td>
<td>
<a href="{{ url_for('user.change_password') }}">
{% if user.password %}Change password{% else %}Add password{% endif %}
</a> 🔒
</td>
</tr>
{% endif %}
</table>
</div>
{% if form %}
{% from "macros/forms.html" import render_field, render_submit_field %}
<form class="box box_grey" action="" method="POST" class="form" role="form">
<h2>Edit Details</h2>
<div class="row">
<div class="col-sm-6 col-md-5 col-lg-4">
{{ form.hidden_tag() }}
{{ render_field(form.display_name, tabindex=240) }}
{{ render_submit_field(form.submit, tabindex=280) }}
</div>
</div>
</form>
{% endif %}
{% endblock %}
|