Plume/templates/instance/configure.html.tera
2018-06-17 16:26:15 +01:00

15 lines
346 B
Text

{% 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 %}