mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-10 04:02:17 +00:00
10 lines
267 B
HTML
Executable File
10 lines
267 B
HTML
Executable File
{% 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 %}
|
|
|