9 lines
320 B
HTML
9 lines
320 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
|
<form action="/touchkey" method="post">
|
|
<input type="hidden" name="username" value="{{ username }}"/><br/>
|
|
Touchkey: <input type="password" name="touchkey" /><br/>
|
|
<input type="submit" value="Login"/>
|
|
</form>
|
|
{% endblock %}
|