-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
159 lines (142 loc) · 6.76 KB
/
registration.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="stylesheet" href="assets/fonts/all.min.css" />
<link rel="icon" href="./assets/images/favicon.ico" type="image" />
<script src="assets/js/lib/require.js" defer></script>
<script src="assets/js/main.js" defer></script>
<title title="perspectivemedia.com">Register - Perspective Media</title>
</head>
<body id="body-container">
<div id="container">
<!-- start of header section -->
<header class="header site-header">
<a class="main-icon" href="index.html"><img
src="assets/images/logo.png" class="nav logo"
alt="perspective media logo" /></a>
<nav class="nav top-nav">
<ul class="nav site-nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="services.html">Services</a></li>
<li id="register-button"><a
href="registration.html">Register</a></li>
<li><span id="login-btn" class="login">Login</span></li>
</ul>
</nav>
</header>
<!-- end of header section -->
<!-- start of main section -->
<main class="main-section">
<!-- start of hero section -->
<div class="hero hero-section">
<div class="overlay-text">
<p class="hero-text">
Its how you see it.
</p>
<button type="button" id="open-contact-modal-btn"
class="contact">Contact</button>
</div>
<img src="./assets/images/perspective.jpg" alt="group of people"
class="hero hero-img">
</div>
<!-- end of hero section -->
<!-- start of registration content -->
<div class="welcome">
<p class="register-intro">
Welcome to Perspective Media!
</p>
<p class="cta-reg">
Let's get you registered.
</p>
</div>
<!-- end of registration content -->
<!-- start of registration form -->
<div id="registration-form-section" class="registration-form">
<form id="register-form" name="register" class="register-form">
<div class="register-rows">
<div class="register-row first-row">
<legend class="legend-header fill-row">
<img src="assets/images/perspective_logo.svg"
class="form-logo" alt="logo">
</legend>
</div>
<div class="register-row">
<label for="firstname" class="registration-label">
First Name:
</label>
<input type="text" id="firstname" />
<div id="firstname-err" class="reg-error fill-row">
</div>
</div>
<div class="register-row">
<label for="lastname" class="registration-label">
Last Name:
</label>
<input type="text" id="lastname" name="lastname" />
<div id="lastname-err" class="reg-error fill-row">
</div>
</div>
<div class="register-row">
<label for="username" class="registration-label">
Username:
</label>
<input type="text" id="username" name="username" />
<div id="username-err" class="reg-error fill-row">
</div>
</div>
<div class="register-row">
<label for="email" class="registration-label">
Email:
</label>
<input type="email" id="email" name="email" />
<div id="email-err" class="reg-error fill-row">
</div>
</div>
<div class="register-row" id="register-password">
<label for="password" class="registration-label">
Password:
</label>
<input type="password" id="password"
name="password" />
<div id="password-err" class="reg-error fill-row">
</div>
</div>
<div class="register-row">
<label for="confirm"
class="registration-label">Confirm:
</label>
<input type="password" id="confirm"
name="confirm" />
<div id="confirm-err" class="reg-error fill-row">
</div>
</div>
<div class="register-row">
<label for="newsletter"
class="registration-label standard-newsletter">
Newsletter:
</label>
<input type="checkbox" class="standard-newletter"
id="newsletter" />
</div>
<div class="register-row last-row">
<button type="button" id="register-btn"
class="register-btn fill-row">Submit</button>
</div>
</div>
</form>
</div>
<!-- end of registration form -->
</main>
<!-- end of main section -->
<!-- Start of Footer Injection Point -->
<div id="site-footer" class="footer-items">
</div>
<!-- End of Footer Injection Point -->
</div>
</body>
</html>