clemsbot/templates/index.html

20 lines
488 B
HTML

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