-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateAccount.html
More file actions
45 lines (40 loc) · 2.09 KB
/
createAccount.html
File metadata and controls
45 lines (40 loc) · 2.09 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>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SignUp</title>
<link rel="stylesheet" href="login.css">
</head>
<body>
<!-- <header><h1>WEBSITE LOGIN PAGE</h1></header> -->
<div id="login_window">
<div id="login_details">
<h2 style="text-align: center; margin: 10px;">Create New Account</h2>
<form action="login_info">
<!-- <input type="text" placeholder="First Name" class="input_details"> -->
<!-- <input type="text" placeholder="Last Name" class="input_details"> -->
<div class="name_layout">
<input type="text" name="firstname" id="email" class="input_details details_hover"
placeholder="First Name">
<input type="text" name="lastname" id="email" class="input_details details_hover"
placeholder="Last Name">
</div>
<input type="email" name="email" id="email" class="input_details details_hover" placeholder="username or email">
<input type="password" name="password" class="input_details details_hover" id="password" placeholder="Create Password">
<input type="password" name="password" class="input_details details_hover" id="password" placeholder="Conferm Password">
</form>
<!-- <br><a class="additional_links" style="margin-left: 7px; padding: 0px 0px;" href="#">Saale phir password bhul gaya?</a><br> -->
<button class="submit" type="submit">Sign Up</button>
</div>
<hr>
<a class="additional_links" id="new_account" href="login.html">Already have an account?</a>
<a href="#" class="additional_links">Need Help?</a>
<!-- <a href="#" class="additional_links">Privacy Policy/Terms & Conditions</a> -->
</div>
<footer>
<!-- <p>By signing up you agree to our Terms of Service and Privacy Policy</p> -->
</footer>
</body>
</html>