25 lines
684 B
HTML
25 lines
684 B
HTML
{% 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 %} |