blob: 49091860acbbe0e8d5979fa504afcc37257dc293 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% extends 'base.html' %}
{% block main %}
<h2>Get Job Status</h2>
<form action="{{ url_for('status') }}" method="post" enctype="multipart/form-data">
{% include 'flash_messages.html' %}
{{ form.csrf_token }}
<div class="form-group">
{{ form.jobID.label }}
{{ form.jobID(class="form-control") }}
</div>
<button class="btn btn-primary">Get Status</button>
</form>
<section>
<style>
#dog{
height: 40vh;
}
</style>
<div id="dog"></div>
<script src="{{url_for('static',filename='js/dog.js')}}"></script>
</section>
{% endblock %}
|