-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsignup.html
More file actions
46 lines (44 loc) · 1.76 KB
/
Copy pathsignup.html
File metadata and controls
46 lines (44 loc) · 1.76 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
<!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>Sign Up | LinkedIn</title>
<link rel="shortcut icon" href="https://icons.iconarchive.com/icons/danleech/simple/48/linkedin-icon.png" type="image/x-icon" />
<link rel="stylesheet" href="./signstyles/sign.css">
</head>
<body>
<div id="logo">
<a href=""><img src="https://www.citypng.com/public/uploads/preview/hd-linkedin-official-logo-transparent-background-31623962207jz85kqlqot.png"/></a>
</div>
<div id="logo_text">
<p id="logo_text1_signup">Make the most of your professional life</p>
</div>
<div id="contain">
<form>
<p>Enter name</p>
<input id="name" type="text" required placeholder="Name">
<p>Enter email</p>
<input id="email" type="email" required placeholder="Email">
<p>Enter password (6 or more charecters)</p>
<input id="password" type="password" required placeholder="Password">
<p>Enter username</p>
<input id="username" type="text" required placeholder="Username">
<p>Enter mobile</p>
<input id="mobile" type="text" required>
<p>Enter description</p>
<input id="description" type="text" required placeholder="Description">
</form>
<p id="text">By clicking Agree & Join you agree to the LinkedIn User agreement privacy policy.</p>
<button onclick="register()">Agree & Join</button>
<br>
<div id="or">
<div id="l"><hr/></div>or<div id="r"><hr/></div>
</div>
<button onclick="signin()">Sign In</button>
<p id="text1">Already on LinkedIn? Sign In now</p>
</div>
</body>
</html>
<script src="signup.js"></script>