-
Notifications
You must be signed in to change notification settings - Fork 1
/
result.html
63 lines (58 loc) · 1.73 KB
/
result.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Results - Farm Track</title>
<style>
body {
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Background gradient */
color: white;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent box */
padding: 30px;
border-radius: 10px;
width: 80%;
max-width: 600px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
text-align: center;
}
h1 {
font-size: 2.5em;
margin-bottom: 20px;
position: relative;
}
p {
font-size: 1.2em;
margin: 10px 0;
}
a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
color: white;
background-color: #28a745; /* Green background */
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s ease;
}
a:hover {
background-color: #218838; /* Darker green on hover */
}
</style>
</head>
<body>
<h1>Your FTS Score</h1>
<p>Your calculated FTS score is: <strong>{{ fts_score }}</strong></p>
<a href="/">Go Back</a>
</body>
</html>