blob: 5715572227d78bbaac43681aae7ab8fa3ebf0242 (
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
|
{% extends "base.html" %}
{% block body %}
<h1>Your Account</h1>
<p><b>Username:</b> <code>{{ current_user.username }}</code>
<p><b>Editor Id:</b> <code><a href="/editor/{{ current_user.editor_id }}">{{ current_user.editor_id }}</a></code>
<div>
<p>Change username:
<form class="" role="change_username" action="/auth/change_username" method="post">
<div class="ui form">
<div class="ui action input medium fluid">
<input type="text" name="username" value="{{ current_user.username }}" aria-label="account username">
<button class="ui button">Update</button>
</div>
</div>
</form>
</div>
<p>In the future, you might be able to...
<ul>
<li>Create a bot user
<li>Generate an API token
</ul>
{% endblock %}
|