-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
54 lines (51 loc) · 2.1 KB
/
signup.html
File metadata and controls
54 lines (51 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<title>Code Test - Sign Up</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/site.css" media="all"/>
<link rel="stylesheet" type="text/css" href="css/signup.css" media="all"/>
</head>
<body>
<!-- main -->
<div class="main-layout wrapper">
<div class="main-container">
<nav>
<a id="homeLink" class="btn std_button" href="index.html">Back to Home</a>
</nav>
<div class="signup-box teal shadow">
<nav>
<a class="btn half float-lt active-btn" href="#">Sign Up</a>
<a class="btn half float-rt inactive-btn" href="#login.html">Log In</a>
</nav>
<div class="clear"></div>
<h1>Sign Up For Free</h1>
<form id="signup_form" action="#" method="post">
<div class="input_container half-space float-lt name">
<input class="text icon ico-user" type="text" name="first_name" required>
<label for="first_name">First Name</label>
</div>
<div class="input_container half-space float-rt name">
<input class="text" type="text" name="last_name" required>
<label for="last_name">Last Name</label>
</div>
<div class="input_container clear">
<input class="text email" type="text" name="email_address" required>
<label for="email_address">Email Address</label>
</div>
<div class="input_container">
<input class="text icon ico-password" type="password" name="password" required>
<label for="password">Set A Password</label>
</div>
<input class="active-btn border-radius" type="submit" value="GET STARTED">
</form>
</div>
</div>
</div>
<!-- //main -->
<script src="js/site.js" type="text/javascript"></script>
<script src="js/signup.js" type="text/javascript"></script>
</body>
</html>