-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsign up.html
244 lines (212 loc) · 6.19 KB
/
sign up.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Resume Builder</title>
<!-- jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<!-- bulma -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<!-- style -->
<link rel="stylesheet" href="./style.css">
<!-- meta -->
</head>
<body>
<!-- nav -->
<div class="container-wrap">
<nav class="navbar is-fixed-top" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href=#>
<i class="fas fa-file-alt" width="112" height="28"></i>
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item">
Home
</a>
<a class="navbar-item">
Documentation
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
More
</a>
<div class="navbar-dropdown">
<a class="navbar-item">
About
</a>
<a class="navbar-item">
Jobs
</a>
<a class="navbar-item">
Contact
</a>
<hr class="navbar-divider">
<a class="navbar-item">
Report an issue
</a>
</div>
</div>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<a class="button loginBtn">
Log in
</a>
</div>
</div>
</div>
</div>
</nav>
</div>
<!-- nav -->
<!-- sign up -->
<section class="container">
<div class="columns is-multiline">
<div class="column is-8 is-offset-2 register">
<div class="columns">
<div class="column left">
<h1 class="title">Resume Builder</h1>
<h2 class="">Lorem ipsum dolor sit amet.</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Corporis ex deleniti aliquam tempora libero
excepturi vero soluta odio optio sed.</p>
</div>
<div class="column right has-text-centered">
<h1 class="title is-4">Sign up today</h1>
<p class="">Lorem ipsum dolor, sit amet consectetur adipisicing elit</p>
<form>
<div class="field">
<div class="control">
<input class="input is-medium" type="text" placeholder="Username">
</div>
</div>
<div class="field">
<div class="control">
<input class="input is-medium" type="email" placeholder="Email">
</div>
</div>
<div class="field">
<div class="control">
<input class="input is-medium" type="password" placeholder="Password">
</div>
</div>
<button class="button is-block is-primary is-fullwidth is-medium">Submit</button>
<br />
<small><a class="underscore">Already have an account?</a></small>
</form>
</div>
</div>
</div>
<div class="column is-8 is-offset-2">
<br>
<nav class="level">
<div class="level-left">
<div class="level-item">
<span class="icon">
<i class="fab fa-twitter"></i>
</span>  
<span class="icon">
<i class="fab fa-facebook"></i>
</span>  
<span class="icon">
<i class="fab fa-instagram"></i>
</span>  
<span class="icon">
<i class="fab fa-github"></i>
</span>  
<span class="icon">
<i class="fas fa-envelope"></i>
</span>
</div>
</div>
<div class="level-right">
<small class="level-item" style="color: var(--textLight)">
© Resume Builder. All Rights Reserved.
</small>
</div>
</nav>
</div>
</div>
</section>
</div>
<!-- sign up -->
<script src="./index.js"></script>
</body>
<style>
:root {
--brandColor: hsl(0, 0%, 0%);
--background: rgb(240, 240, 240);
--textDark: hsla(0, 0%, 0%, 0.66);
--textLight: hsla(0, 0%, 0%, 0.33);
}
body {
background: var(--background);
height: 100vh;
color: var(--textDark);
}
.field:not(:last-child) {
margin-bottom: 1rem;
}
.register {
margin-top: 10rem;
background: white;
border-radius: 10px;
}
.left,
.right {
padding: 4.5rem;
}
.left {
border-right: 5px solid var(--background);
}
.left .title {
font-weight: 800;
letter-spacing: -2px;
}
.left .colored {
color: var(--brandColor);
font-weight: 500;
margin-top: 1rem !important;
letter-spacing: -1px;
}
.left p {
color: var(--textLight);
font-size: 1.15rem;
}
.right .title {
font-weight: 800;
letter-spacing: -1px;
}
.right .description {
margin-top: 1rem;
margin-bottom: 1rem !important;
color: var(--textLight);
font-size: 1.15rem;
}
.right small {
color: var(--textLight);
}
input {
font-size: 1rem;
}
input:focus {
border-color: var(--brandColor) !important;
box-shadow: 0 0 0 1px var(--brandColor) !important;
}
.fab,
.fas {
color: var(--textLight);
margin-right: 1rem;
}
</style>
</html>