2023-02-21 16:59:41 -05:00
|
|
|
<!DOCTYPE html>
|
2023-03-01 17:05:16 -05:00
|
|
|
{% include 'head.html' %}
|
|
|
|
|
{% include 'logo.html' %}
|
2023-02-17 16:59:42 -05:00
|
|
|
{% block content %}
|
|
|
|
|
<h4>Hello! Please click below to enter your key.</h4>
|
2023-03-09 15:15:42 -05:00
|
|
|
<h2 class=error><strong>
|
|
|
|
|
{% if error %}
|
|
|
|
|
{{ error }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
</strong></h2>
|
2023-03-06 09:33:42 -05:00
|
|
|
<p>
|
|
|
|
|
</p>
|
2023-02-17 16:59:42 -05:00
|
|
|
<form action="{{ url_for("ask_key")}}" method="post">
|
2023-03-15 17:07:34 -04:00
|
|
|
<input id="fields" type="password" name="apikey">
|
2023-03-06 09:33:42 -05:00
|
|
|
<input id="fields" type="submit" value="Submit">
|
2023-02-17 16:59:42 -05:00
|
|
|
</form>
|
|
|
|
|
</div>
|
2023-02-21 16:59:41 -05:00
|
|
|
</div>
|
2023-02-17 16:59:42 -05:00
|
|
|
</body>
|
2023-03-01 17:05:16 -05:00
|
|
|
{% endblock %}
|