phonograph/templates/base_config.html

16 lines
379 B
HTML
Raw Normal View History

2025-05-28 16:35:00 -07:00
{% extends "base.html" %}
{% block main %}
<form method="post" action="">
<div>
<label for="input-name">Name:</label>
<input type="text" name="name" value="{{ base.name }}">
</div>
<div>
<label for="input-url">Database URL:</label>
<input type="text" name="url" value="{{ base.url }}">
</div>
<button type="submit">Save</button>
</form>
{% endblock %}