-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
91 lines (84 loc) · 2.8 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
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
<!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 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 type="submit" value="SIGN UP">SIGNUP</button>
</div>
</form>
<p><a>FORGOT PASSWORD?</a></p>
 
 
 
 
 
 
<p class="para"><a href="/login">ALREADY REGISTERED? LOGIN</a></p>
<br>
<br>
<!--<p>or Signup using:</p>
<div class="icons"></div>
<i class="fab fa-facebook-square fa-2x" ></i>
<i class="fab fa-twitter-square fa-2x"></i>
<i class="fab fa-google-plus-square fa-2x"></i>
</div> -->
<div class="col-sm-8">
<div class="card social-block">
<div class="card-body">
<a class="btn btn-block btn-social btn-google" href="/auth/google" role="button">
<i class="fab fa-google"></i>
Sign Up with Google
</a>
</div>
</div>
</div>
<br>
<div class="col-sm-8">
<div class="card social-block">
<div class="card-body">
<a class="btn btn-block btn-social btn-facebook" href="/auth/google" role="button">
<i class="fab fa-facebook"></i>
Sign Up with Facebook
</a>
</div>
</div>
</div>
<br>
<!--<div class="col-sm-8">
<div class="card social-block">
<div class="card-body">
<a class="btn btn-block btn-social btn-twitter" href="/auth/google" role="button">
<i class="fab fa-twitter"></i>
Sign Up with Twitter
</a>
</div>
</div>
</div>-->
</div>
<script src="mainsignup.js"></script>
</body>
</html>