-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (42 loc) · 1.83 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CompraBets</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous" />
<link rel="stylesheet" href="../Styles/index.css" />
<link rel="icon" href="./Images/icon.png">
</head>
<body>
<div class="container mx-auto shadow p-3 my-4 rounded">
<!--Logo-->
<img src="../Images/Logo/green/png/logo-no-background.png" alt="compraBetsLogo"
class="compraBetsLogo mx-auto mt-4 mb-4 img-fluid" />
<!--Log in Form-->
<form class="logInForm mx-auto needs-validation" novalidate>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="logInUserName" placeholder="User Name" required />
<label for="logInUserName">User Name</label>
</div>
<div class="form-floating">
<input type="password" class="form-control" id="logInPassword" placeholder="Password" required />
<label for="logInPassword">Password</label>
</div>
<p class="errmsg text-center text-danger my-2 fs-5"></p>
<p class="text-center my-3">
Forgot your password? <input type="button" value="click here"
class="passResetButton btn btn-outline-primary p-0 px-1 mb-1 fw-bold border-0">
</p>
<p class="text-center my-3">
Not a member? <a href="./html/Register.html"> Register</a>
</p>
<input type="submit" class="btn btn-success mx-auto mb-3" id="logInButton" value="Log In" />
</form>
</div>
<!--Java Script-->
<script src="./JS/index.js" type="module"></script>
</body>
</html>