-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmalaria_predict.html
More file actions
19 lines (19 loc) · 846 Bytes
/
malaria_predict.html
File metadata and controls
19 lines (19 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends 'main.html' %}
{% block content %}
<div class="row" style="margin-bottom: 477px;">
<div class="col-md-3"></div>
<div class="col-md-6">
{% if pred == 1 %}
<div class="card card-body alert alert-danger"><center>This cell is an Infected Malerial Cell.</center></div>
{% else %}
<div class="card card-body alert alert-success"><center>This cell is not Infected.</center></div>
{% endif %}
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-4"><a href="{{ url_for('home') }}" class="btn btn-block btn-primary">Back to Home</a></div>
<div class="col-md-4"></div>
</div>
</div>
<div class="col-md-3"></div>
</div>
{% endblock %}