1
0
forked from s434650/CatOrNot
CatOrNot/app/templates/index.html
2018-12-11 00:32:28 +01:00

14 lines
323 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Check if the picture is cat or not!</h1>
<form action="" method="post" novalidate>
{{ form.hidden_tag() }}
<p>
{{ form.url.label }}<br>
{{ form.url }}
</p>
<p>{{ form.submit() }}</p>
</form>
{% endblock %}