Files
NP_CSM_Tool/app/templates/index.html
2023-03-09 15:15:42 -05:00

21 lines
464 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="text" name="apikey">
<input id="fields" type="submit" value="Submit">
</form>
</div>
</div>
</body>
{% endblock %}