-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
56 lines (56 loc) · 2.17 KB
/
signup.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
56
<!DOCTYPE html>
<html>
<head>
<title>Signup Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Audiowide">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="signupstyle.css">
<link rel="stylesheet" href="bootstrap-social.css">
<link rel="stylesheet" href="styling/all.css">
</head>
<body>
<div class="container">
<h2>SIGN UP</h2>
<form action="/signup" method="post">
<div class="input-container">
<i class="fa fa-user icon"></i>
<input type="text" name="username" class="input" placeholder="Username">
</div>
<div class="input-container">
<i class="fas fa-envelope"></i>
<input type="email" name="email" class="input" placeholder="Email">
</div>
<div class="input-container">
<i class="fa fa-key icon"></i>
<input type="password" name="password" class="input" id="pass" placeholder="Password">
<i class="fas fa-eye"></i>
</div>
<div class="submit">
<button class="btn btn-outline-danger" style="width:8rem;">SIGNUP</button>
</div>
</form>
<p style="font-size:35px;"><a>FORGOT PASSWORD?</a></p>
 
 
 
 
 
 
<p class="para" style="font-size:35px;"><a href="/login">ALREADY REGISTERED? LOGIN</a></p>
<br>
<br>
<div class="col-6" style="text-align: center; margin-left:25%;">
<div class="card social-block">
<a class="btn btn-social btn-google" href="/auth/google" role="button">
<i class="fab fa-google"></i>
Sign Up with Google
</a>
</div>
</div>
<br>
</div>
<script src="mainsignup.js"></script>
</body>
</html>