-
Notifications
You must be signed in to change notification settings - Fork 4
/
signIn.html
35 lines (34 loc) · 941 Bytes
/
signIn.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./signIn.css" />
<title>Quizzey</title>
</head>
<body>
<div class="signInCard">
<h1>QUIZZEY</h1>
<form id="signInForm">
<input type="email" placeholder="Email" name="email" required />
<input
type="password"
placeholder="Password"
name="password"
required
/>
<a>Forgot Password ?</a>
<button type="submit">LOGIN</button>
</form>
<span>Don't have an account ?</span>
<a class="sign-up" href="./signUp.html">Sign Up</a>
</div>
<script src="./signIn.js"></script>
</body>
</html>