-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
45 lines (45 loc) · 1.18 KB
/
Copy pathsignup.html
File metadata and controls
45 lines (45 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="signup.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Signup-BuyNGo</title>
</head>
<body>
<div class="signup-container">
<h2>SIGN UP</h2>
<form action="#" method="POST">
<div class="form-group">
<input
type="email"
id="email"
name="email"
placeholder="Email"
required
/>
</div>
<div class="form-group">
<input
type="password"
id="password"
name="password"
placeholder="Password"
required
/>
</div>
<div class="form-group">
<input
type="password"
id="confirm-password"
name="confirm-password"
placeholder="Confirm Password"
required
/>
</div>
<button id="submit">Create Account</button>
</form>
</div>
<script src="signup.js" defer></script>
</body>
</html>