16 lines
346 B
Plaintext
16 lines
346 B
Plaintext
{% extends "base" %}
|
|
|
|
{% 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 %}
|