clemsbot/templates/index.html

21 lines
397 B
HTML

{% extends "_base.html" %}
{% block title %}Test{% endblock %}
{% block body %}
<form action="/" method="post">
<label>
Access token
<input type="password" name="access_token"/>
</label>
<button type="submit">Submit</button>
</form>
<ul>
<li>
<a href="/commands">Commands</a>
<a href="/redemptions">Redemptions</a>
</li>
</ul>
{% endblock %}