-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
134 lines (115 loc) · 2.87 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!doctype html>
<html>
<head>
<title> SIGN UP/LOGIN </title>
<link rel="stylesheet" type="text/css" href="signup.css">
</head>
<body>
<div id="container" class="container">
<!-- FORM SECTION -->
<div class="row">
<!-- SIGN UP -->
<div class="col align-items-center flex-col sign-up">
<div class="form-wrapper align-items-center">
<div class="form sign-up">
<div class="input-group">
<i class='bx bxs-user'></i>
<input type="text" placeholder="Username">
</div>
<div class="input-group">
<i class='bx bx-mail-send'></i>
<input type="email" placeholder="Email">
</div>
<div class="input-group">
<i class='bx bxs-lock-alt'></i>
<input type="password" placeholder="Password">
</div>
<div class="input-group">
<i class='bx bxs-lock-alt'></i>
<input type="password" placeholder="Confirm password">
</div>
<a href="Account.html" >
<button>
Sign up
</button>
</a>
<p>
<span>
Already have an account?
</span>
<b onclick="toggle()" class="pointer">
Sign in here
</b>
</p>
</div>
</div>
</div>
<!-- END SIGN UP -->
<!-- SIGN IN -->
<div class="col align-items-center flex-col sign-in">
<div class="form-wrapper align-items-center">
<div class="form sign-in">
<div class="input-group">
<i class='bx bxs-user'></i>
<input type="text" placeholder="Username">
</div>
<div class="input-group">
<i class='bx bxs-lock-alt'></i>
<input type="password" placeholder="Password">
</div>
<a href="Account.html" >
<button>
Sign in
</button>
</a>
<p>
<b>
Forgot password?
</b>
</p>
<p>
<span>
Don't have an account?
</span>
<b onclick="toggle()" class="pointer">
Sign up here
</b>
</p>
</div>
</div>
<div class="form-wrapper">
</div>
</div>
<!-- END SIGN IN -->
</div>
<!-- END FORM SECTION -->
<!-- CONTENT SECTION -->
<div class="row content-row">
<!-- SIGN IN CONTENT -->
<div class="col align-items-center flex-col">
<div class="text sign-in">
<h2>
Welcome
</h2>
</div>
<div class="img sign-in">
</div>
</div>
<!-- END SIGN IN CONTENT -->
<!-- SIGN UP CONTENT -->
<div class="col align-items-center flex-col">
<div class="img sign-up">
</div>
<div class="text sign-up">
<h2>
Join with us
</h2>
</div>
</div>
<!-- END SIGN UP CONTENT -->
</div>
<!-- END CONTENT SECTION -->
</div>
<script src="signup.js"></script>
</body>
</html>