15 lines
398 B
HTML
15 lines
398 B
HTML
{% 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 autocomplete="off" type="text" name="url" value="{{ base.url }}">
|
|
</div>
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
{% endblock %}
|