-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
62 lines (45 loc) · 2.25 KB
/
signup.html
File metadata and controls
62 lines (45 loc) · 2.25 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!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="./style/signup.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
</head>
<body>
<!-- Navbar -->
<div id="mynav">
<div><img id="image1" src="https://content1.geekbuying.com/V1.4/en/images/indexV7/Geekbuying.png" alt=""></div>
</div>
<!-- form -->
<div id="container" >
<!-- form div -->
<div id="formdiv">
<div>
<p>Create your account</p>
<a href="../login.html">Sign in</a>
</div>
<div>
<form action="" id="form">
<input class="input" type="text" name="nickName" id="username" autocomplete="off" placeholder="Nick name" maxlength="20" class="input" aria-invalid="true" >
<input class="input" type="email" name="emailAddress" class="input" id="useremail" autocomplete="off" placeholder="Email address" maxlength="60" aria-invalid="true" >
<input class="input" type="password" name="password" autocomplete="off" id="userpass" placeholder="Password">
<i class="far fa-eye" id="togglePassword" style="margin-left: -30px; cursor: pointer;"></i>
<div id="agree">
<div>
<input class="input" type="checkbox" id="checkbox">
</div>
<div><p>   I agree to Geekbuying's <a href="Terms of Use"><u>Terms of Use</u></a> &<a href="tems"><u> Privacy Policy.</u></a> </p></div>
</div>
<div>
<input class="input" type="submit" value="Create account" id="submit">
</div>
</div>
</div>
</div>
</body>
</html>
<script src="./script/signup.js"></script>