-
Notifications
You must be signed in to change notification settings - Fork 0
/
Untitled-7.html
31 lines (27 loc) · 1 KB
/
Untitled-7.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<div class="signup-container">
<h1>Sign Up</h1>
<div class="form-container">
<div class="username">
<img class="icon email-icon" src="login-icons/email.svg" alt="">
<input type="email" class="user-input" placeholder="E-Mail">
</div>
<div class="password">
<img class="icon password-icon" src="login-icons/password-lock.svg" alt="">
<input type="password" class="pass-input" placeholder="Password">
</div>
<!-- Add more form fields as needed for sign-up process -->
<button type="button" id="signup-submit">Go!</button>
</div>
</div>
<script src="signup-script.js"></script>
</body>
</html>