-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 838 Bytes
/
index.html
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
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Branch Upgrade Predictor</title>
</head>
<body>
<h1>Branch Upgrade Predictor</h1>
<form action="/predict" method="POST">
<label for="ygpa">Enter your YGPA:</label>
<input type="text" id="ygpa" name="ygpa" required>
<button type="submit">Predict</button>
</form>
{% if ygpa %}
<div>
<h2>Results for YGPA: {{ ygpa }}</h2>
{% if error_message %}
<p style="color: red;">{{ error_message }}</p>
{% else %}
<p>Best Branch: {{ best_branch }}</p>
<p>Probability: {{ best_probability }}</p>
{% endif %}
</div>
{% endif %}
</body>
</html>