mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-10 04:02:17 +00:00
10 lines
329 B
HTML
10 lines
329 B
HTML
|
{% extends "layout.html" %}
|
||
|
{% block body %}
|
||
|
<form method="post">
|
||
|
<label for="user">User</label><input type="text" id="user" name="user" value="{{ request.form.user }}" /><br />
|
||
|
<label for="password">Password</label><input type="password" id="password" name="password" /><br />
|
||
|
<input type="submit" />
|
||
|
</form>
|
||
|
{% endblock %}
|
||
|
|