21 lines
468 B
HTML
21 lines
468 B
HTML
<!DOCTYPE html>
|
|
{% include 'head.html' %}
|
|
{% include 'logo.html' %}
|
|
{% block content %}
|
|
<h4>Hello! Please click below to enter your key.</h4>
|
|
<h2 class=error><strong>
|
|
{% if error %}
|
|
{{ error }}
|
|
{% endif %}
|
|
</strong></h2>
|
|
<p>
|
|
</p>
|
|
<form action="{{ url_for("ask_key")}}" method="post">
|
|
<input id="fields" type="password" name="apikey">
|
|
<input id="fields" type="submit" value="Submit">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
{% endblock %}
|