mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-20 10:31:17 +00:00
15 lines
298 B
Text
15 lines
298 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 %}
|