Plume/templates/instance/configure.html.tera

16 lines
359 B
Plaintext
Raw Normal View History

2018-05-09 19:53:12 +02:00
{% extends "base" %}
2018-05-09 19:53:12 +02:00
{% block title %}
2018-06-17 17:26:15 +02:00
{{ "Configuration" | _ }}
2018-05-09 19:53:12 +02:00
{% endblock title %}
{% block content %}
2018-06-17 17:26:15 +02:00
<h1>{{ "Configure your instance" | _ }}</h1>
2018-05-09 19:53:12 +02:00
<form method="post">
2018-06-17 17:26:15 +02:00
<label for="name">{{ "Name" | _ }}</label>
<input type="text" id="name" name="name" />
2018-05-09 19:53:12 +02:00
<input type="submit" value="{{ "Let's go!" | _ }}" />
2018-05-09 19:53:12 +02:00
</form>
{% endblock content %}