clemsbot/templates/index.html

21 lines
397 B
HTML
Raw Normal View History

2021-08-18 05:45:44 +00:00
{% 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 %}