-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
88 lines (69 loc) · 3 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
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
---
layout: blank
title: Sign Up | Atlas
description: Sign up for Atlas
background-color: color-bg-dark
---
<main role="main">
<article>
<div class="padding-t2" id="slide-up">
<div class="row">
<div class="large-6 medium-8 small-11 columns small-centered">
<!-- logo -->
<div class="padding-4 opacity-3 text-center">
<div class="row">
<div class="small-4 columns small-centered">
<img src="../assets/img/atlas-mark-128.png" />
</div>
</div>
</div>
<!-- form -->
<form>
<!-- card -->
<div class="margin-b2 rounded overflow-hidden transparent-card">
<p class="margin-none padding-1 color-bg-midnight text-white text-center text-big">Create an Account</p>
<!-- table -->
<table>
<colgroup>
<col span="1" style="width: 25%;">
<col span="1" style="width: 75%;">
</colgroup>
<!-- row -->
<tr class="table-nohover">
<td class="padding-none border-none">
<label for="email" class="padding-1 text-small">Email:</label>
</td>
<td class="padding-none border-none">
<input autofocus id="email" type="text" class="full border-none unround" placeholder="[email protected]"></input>
</td>
</tr>
<!-- row -->
<tr class="table-nohover">
<td class="padding-none border-none">
<label for="password" class="padding-1 text-small">Password:</label>
</td>
<td class="padding-none border-none">
<input id="password" type="password" class="full border-none unround" placeholder="•••••••••••••"></input>
</td>
</tr>
<!-- row -->
<tr class="table-nohover">
<td class="padding-none border-none">
<label for="password-confirm" class="padding-1 text-small">Confirm:</label>
</td>
<td class="padding-none border-none">
<input id="password-confirm" type="password" class="full border-none unround" placeholder="•••••••••••••"></input>
</td>
</tr>
</table>
<p class="margin-none padding-1 text-center text-small text-alert">Error:</p>
<p class="margin-none padding-1 text-center text-small border-solid-top border-color-dark">Already have an account? <a href="#">Sign In</a>.</p>
</div>
<!-- submit -->
<input type="submit" value="Sign Up" class="button-small full color-bg-primary border-color-primary text-light text-weight-700">
</form>
</div>
</div>
</div>
</article>
</main>