23 lines
944 B
HTML
23 lines
944 B
HTML
{% extends "other_base.html" %}
|
|
{% block title%}Predicting...|COVID-19 Detector{% endblock %}
|
|
{% block content %}
|
|
<div class="page-wrapper">
|
|
<section class="page-header">
|
|
</section><!-- /.page-header -->
|
|
<div class="col-lg-10">
|
|
<div class="container" style="display: flex; justify-content: center; align-items: center; height: 100vh;">
|
|
<img src="{{ url_for('static', filename='images/shapes/funfact-virus-1-1.png')}}"
|
|
style="padding-left: 100px;" class="funfact-one__virus-1" alt="">
|
|
<h1 style="margin-left: 80px;"> 正在预测中,请稍后...</h1>
|
|
</div>
|
|
<img src="{{ url_for('static', filename='images/shapes/funfact-virus-1-2.png')}}" style="padding-right: 50px"
|
|
class="funfact-one__virus-2" alt="">
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
// 等待0.5秒后自动跳转到result_chest页面
|
|
setTimeout(function () {
|
|
window.location.href = "{{ redirect_url }}";
|
|
}, 500);
|
|
</script>
|
|
{%endblock%} |