-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdummy.html
55 lines (41 loc) · 2.28 KB
/
dummy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="bg-blue-900">
<header class="absolute inset-x-0 top-0 z-50">
<!-- Mobile menu, show/hide based on menu open state. -->
<div class="lg:hidden" role="dialog" aria-modal="true">
<!-- Background backdrop, show/hide based on slide-over state. -->
</div>
</header>
<div class="relative isolate pt-4 bg-[#040A25]">
<div class="absolute inset-x-0 -top-40 -z-10 transform-gpu overflow-hidden blur-3xl sm:-top-80"
aria-hidden="true">
<div
class="relative left-[calc(50%-11rem)] aspect-[1155/678] w-[36.125rem] -translate-x-1/2 rotate-[30deg] bg-gradient-to-tr from-[#f00f31] to-[#f00f31] opacity-20 sm:left-[calc(50%-30rem)] sm:w-[72.1875rem]"
style="clip-path: polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 85.5% 0.1%, 80.7% 2%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 45.2% 34.5%, 27.5% 76.7%, 0.1% 64.9%, 17.9% 100%, 27.6% 76.8%, 76.1% 97.7%, 74.1% 44.1%)">
</div>
</div>
<div class="py-24 sm:py-16 lg:pb-40">
<div class="mx-auto max-w-7xl px-6 lg:px-8">
<div class="mx-auto max-w-2xl text-center">
<h1 class="text-4xl font-bold tracking-tight text-white sm:text-6xl">Prediction Results 🏏</h1>
<p class="mt-6 text-2xl leading-8 text-blue-300">{{ batting_team }} Winning Probability: {{ win_probability }}%</p>
<p class="mt-6 text-2xl leading-8 text-blue-300">{{ bowling_team }} Winning Probability: {{ loss_probability }}%</p>
</div>
<img src="{{ url_for('static', filename='image.png') }}" alt="App screenshot" width="2432" height="1442"
class="mt-16 rounded-md bg-white/5 w-screen shadow-2xl ring-1 ring-white/10 sm:mt-24">
</div>
</div>
</div>
</div>
</div>
<!-- /------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -->
</body>
</html>