-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWelcome.html
More file actions
138 lines (121 loc) · 4.17 KB
/
Welcome.html
File metadata and controls
138 lines (121 loc) · 4.17 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!--
This is the Welcome page of the AthletiLink website.
It contains a logo, a video, and sign-in/sign-up buttons.
-->
<!DOCTYPE html>
<html>
<head>
<title>AthletiLink</title>
<link rel="icon" type="image/x-icon" href="/assets/images/Favicon/Regular/favicon-32x32.png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap">
<style>
body {
background-color: #282525;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Roboto', sans-serif;
position: relative;
}
.logo-container {
text-align: center;
opacity: 0;
animation: fadeIn 3s forwards;
}
.logo {
max-width: 100%;
height: auto;
width: 80%;
max-width: 960px;
animation: fadeIn 2.0s forwards 0.5s;
}
.video-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.5;
z-index: -1;
}
.video {
width: 100%;
height: 100%;
}
.sign-in-up-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
gap: 10px;
}
.btn {
background-color: transparent !important;
border: 1px solid #ffffff !important;
color: #343a40 !important;
font-size: 20px;
opacity: 1;
animation: fadeIn 2.0s forwards 0.5s;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.btn {
background-color: transparent !important;
border: 1px solid #ffffff !important;
color: #ffffff !important;
font-size: 20px;
opacity: 1;
animation: fadeIn 2.0s forwards 0.5s;
transition: background-color 0.3s ease, color 0.3s ease;
}
.btn:hover {
background-color: #797979 !important;
color: #000000 !important;
}
.btn a {
color: inherit;
text-decoration: none;
transition: color 0.3s ease;
}
.btn:hover a {
color: inherit;
}
</style>
</head>
<body>
<!-- Logo container -->
<div class="logo-container">
<img src="assets/images/logo-transparent-bg-white.png" alt="Logo" class="logo">
<!-- Video container -->
<div class="video-container">
<!-- YouTube video embedded in an iframe -->
<iframe width="960" height="540"
src="https://www.youtube.com/embed/Yb2cX8qwCho?si=e3DF9m6XgUGnVhQv&&controls=0&autoplay=1&mute=1&start=5"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen class="video"></iframe>
</div>
<!-- Sign-in/Sign-up buttons container -->
<div class="sign-in-up-container">
<button type="button" class="btn"><a href="SignIn.html" style="color:rgb(255, 255, 255)"> Sign
In</a></button>
<button type="button" class="btn"><a href="SignUp.html" style="color:rgb(255, 255, 255)"> Sign
Up</a></button>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js"
integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>