Files
BellScheduler/app/templates/settings.html
William Peebles 8ed6336e20
All checks were successful
continuous-integration/drone/push Build is passing
create settings page, full timezone support
2022-11-23 20:36:38 -05:00

23 lines
592 B
HTML

{% 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 %}