mirror of
https://github.com/skylanix/MamieHenriette.git
synced 2026-02-06 23:10:36 +01:00
26 lines
749 B
HTML
26 lines
749 B
HTML
{% extends "template.html" %}
|
|
|
|
{% block content %}
|
|
<h1>Configuration de Mamie.</h1>
|
|
|
|
<h2>Humble Bundle</h2>
|
|
<form action="{{ url_for('updateConfiguration') }}" method="POST">
|
|
<label for="humble_bundle_channel">Api Discord (cachée)</label>
|
|
{{channels}}
|
|
<select name="humble_bundle_channel">
|
|
{% for channel in channels %}
|
|
<option value="{{channel.id}}">{{channel.name}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<input type="Submit" value="Définir">
|
|
</form>
|
|
|
|
|
|
<h2>Api</h2>
|
|
<form action="{{ url_for('setConfiguration', key = 'discord_token') }}" method="POST">
|
|
<label for="value">Api Discord (cachée)</label>
|
|
<input name="value" type="password" />
|
|
<input type="Submit" value="Définir">
|
|
<p>Nécéssite un redémarrage</p>
|
|
</form>
|
|
{% endblock %} |