-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
40 lines (37 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup</title>
<link rel="stylesheet" href="signup_styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="signup-container">
<h2>Signup <i class="fa fa-sign-in" aria-hidden="true"></i></h2>
<form>
<div class="input-field">
<i style="font-size:24px" class="fa"></i>
<label>Email</label>
<input type="email" id="email" placeholder="[email protected]" required>
</div>
<div class="input-field">
<i class="fa fa-unlock-alt" aria-hidden="true"></i>
<label>Password</label>
<input type="text" id="password" placeholder="Password" required>
</div>
<i class="fa fa-unlock-alt" aria-hidden="true"></i>
<label>Confirm Password</label>
<div class="input-field">
<input type="password" id="confirmPassword" placeholder="Password" required>
<span class="show-password" onclick="togglePassword()">👁</span>
</div>
<p>Already have an account ? <a href="index.html" id="login">Login</a>
</p>
<button class="login-btn" type="submit" onclick="login()">Signup</button>
</form>
</div>
<script src="signup_script.js"></script>
</body>
</html>