forked from usman-amj4d/Common-Voice-Mozilla-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
61 lines (57 loc) · 2.58 KB
/
signup.html
File metadata and controls
61 lines (57 loc) · 2.58 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
<!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>Mc Master - Login</title>
<!-- Favicon -->
<link rel="shortcut icon" href="assets/imgs/favicon.ico" type="image/x-icon">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/signup.css">
</head>
<body>
<section class="login-section d-flex justify-content-center align-items-center py-5">
<div class="form-container p-5 bg-white col-lg-4 col-md-7 col-12">
<h2 class="mb-4">Mc Master</h2>
<form class="d-flex flex-column" action="" method="">
<h6>Mc Master University</h6>
<div>
<input type="email" name="emailAddress" id="emailAddress">
<label for="emailAddress">Log in with email</label>
<input class="btn rounded-pill" type="submit" value="Enter">
</div>
<hr>
<button class="loginBtns d-flex align-items-center bg-transparent rounded-pill text-center">
<img src="assets/imgs/firefox.svg" alt="firefox">
<span>Log in with Firefox</span>
</button>
<button class="loginBtns d-flex align-items-center bg-transparent rounded-pill text-center">
<img class="github-icon-default" src="assets/imgs/github.svg" alt="github">
<img class="github-icon-white" src="assets/imgs/github-white.svg" alt="github">
<span>Log in with GitHub</span>
</button>
<button class="loginBtns d-flex align-items-center bg-transparent rounded-pill text-center">
<img src="assets/imgs/google.svg" alt="google">
<span>Log in with Google</span>
</button>
</form>
<div class="bottom-links mt-5 d-flex justify-content-between">
<a href="#">Legal</a>
<a href="#">Privacy</a>
<a href="#">Need help?</a>
</div>
</div>
</section>
<!-- Javascript -->
<!-- Jquery -->
<script src="assets/js/jquery-3.6.0.min.js"></script>
<!-- Bootstarp JS -->
<script src="assets/js/bootstrap.bundle.min.js"></script>
<!-- Custom JS -->
<script src="assets/js/main.js"></script>
</body>
</html>