-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsignup.html
53 lines (53 loc) · 1.87 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
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./css/signup.css" />
</head>
<body>
<div id="wrapper">
<div id="signUpInfo">
<img src="./img/codeclannglogo.png" alt="Code Clan Logo" id="logo" />
<h1 class="infoHeading">welcome to CodeClan<br />Nigeria</h1>
<p class="infoSubheading">sign up to</p>
<img src="./img/keyToComputer.png " alt="" id="infoIllustration" />
</div>
<div id="signUpDiv">
<h1 class="none show">register</h1>
<h2 class="none display">Create a Code Clan account</h2>
<form action="" id="signUpForm">
<div class="nameInputGroup">
<label for="firstName" class="label">
First Name<br />
<input type="text" id="firstName" class="input" />
</label>
<label for="lastName" class="label">
Last Name<br />
<input type="text" id="lastName" class="input" />
</label>
</div>
<label for="email " class="label">
Email<br />
<input type="email" name="" id="email" class="input" />
</label>
<label for="password" class="label">
Password<br />
<input type="password" name="" id="password" class="input" />
</label>
<p class="info blue privacy">
by clicking on this button, you agree to our Terms of use and
privacy policy
</p>
<button class="submit">get started</button>
<p class="info blue signIn">
already have an account?<span
><a href="signin.html">Sign In</a></span
>
</p>
</form>
</div>
</div>
</body>
</html>