create settings page, full timezone support
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
23
app/templates/settings.html
Normal file
23
app/templates/settings.html
Normal file
@@ -0,0 +1,23 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block content %}
|
||||
<span><h1>{% block title %} Settings {% endblock %}</h1></span>
|
||||
<form method="post">
|
||||
{{ form.csrf_token }}
|
||||
<p>
|
||||
<b>User: {{ current_user.userName }}</b>
|
||||
<div>
|
||||
{{ form.realName.label }} {{ form.realName }}
|
||||
</div> <br>
|
||||
<div>
|
||||
{{ form.password.label }} {{ form.password }}
|
||||
</div> <br>
|
||||
<div>
|
||||
{{ form.timezone.label }} {{ form.timezone }}
|
||||
</div>
|
||||
</p>
|
||||
<p>
|
||||
<button class="btn btn-primary" type="submit">Submit</button>
|
||||
</p>
|
||||
</form>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user