1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 19:01:03 +00:00
supysonic/templates/change_mail.html

10 lines
267 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% block body %}
<h2>{{ user.name }}</h2>
<form method="post">
<label for="mail">Email</label><input type="text" name="mail" id="mail" value="{{ request.form.mail or user.mail }}" /><br />
<input type="submit" />
</form>
{% endblock %}