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