forked from s434650/CatOrNot
14 lines
323 B
HTML
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 %}
|