mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-03 19:09:30 +00:00
15 lines
359 B
Text
15 lines
359 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 type="text" id="name" name="name" />
|
|
|
|
<input type="submit" value="{{ "Let's go!" | _ }}" />
|
|
</form>
|
|
{% endblock content %}
|