2018-05-09 17:53:12 +00:00
|
|
|
{% extends "base" %}
|
2018-04-22 13:35:37 +00:00
|
|
|
|
2018-05-09 17:53:12 +00:00
|
|
|
{% block title %}
|
|
|
|
Configuration
|
|
|
|
{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1>Configure your instance</h1>
|
|
|
|
<form method="post">
|
|
|
|
<label for="name">Name</label>
|
|
|
|
<input name="name">
|
|
|
|
|
|
|
|
<input type="submit" value="Let's go!"/>
|
|
|
|
</form>
|
|
|
|
{% endblock content %}
|