-
Notifications
You must be signed in to change notification settings - Fork 4
/
signup.html
28 lines (26 loc) · 1.54 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
<!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>Document</title>
<link rel="stylesheet" href="./styles/signup.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="main-signup-div">
<h1>Create Account</h1>
<form>
<div><input type="text" placeholder="Enter name" id="new-user-name" required></div>
<div><input type="email" placeholder="Enter email" id="new-user-email"></div>
<div><input type="password" id="new-user-password" placeholder=" Password must contains upper, lower,special character,number" required><i class="fa fa-eye-slash"></i></div>
<div><input type="text" id="new-user-country" placeholder="Country" required value="India"></div>
<div class="create-btn"><input type="submit" value="CREATE AN ACCOUNT"></div>
</form>
<p id="terms-condition">By clicking "Create an Account", you agree to our Terms<br> of Use and Privacy Policy, including the Use of Cookies<br> and the transfer of your personal information to the<br> United States, a jurisdiction that may not provide an<br> equivalent level of data protection to the laws in your<br> home country.</p>
<span>Already have an account? <a href="signin.html" id="signin-link">Sign in</a></span>
</div>
</body>
</html>
<script src="./scripts/signup.js"></script>