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