-
Notifications
You must be signed in to change notification settings - Fork 2
/
signup.html
157 lines (141 loc) · 4.06 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
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
---
layout: splash
title: Sign Up Page
slug: login
lead: "ElasticBox sign up page."
base_url: "../"
---
<style type="text/css">
* {
margin: 0px;
padding: 0px;
}
body {
background-color: #2c3c5c;
}
div#shell {
position: absolute;
min-height: 700px;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
width: 100%;
height: 100%;
background:
url('https://dl.dropboxusercontent.com/u/11221717/hero-texture.png') repeat,
url('https://dl.dropboxusercontent.com/u/11221717/mountains.png') center bottom no-repeat;
z-index: 1;
}
img {
width: 100%;
}
img#background-clouds {
min-width: 1000px;
position: absolute;
text-align: center;
opacity: 1;
z-index: 4;
}
.error-links {
padding-bottom: 40px
}
.error-lead {
font-size: 32px;
position: relative;
color: #a36eda;
z-index: 6;
}
.error-sub {
text-align: center;
color: #627990;
z-index: 7;
}
.logo-container {
position: relative;
margin: 20px auto;
width: 250px;
height: auto;
}
a.more {
font-size: 18px;
}
#eb-logo {
position: relative;
margin: 0 auto;
width: 250px;
opacity: 0.4;
z-index: 70;
}
.sign-up-block {
position: relative;
}
.login-container {
position: relative;
margin: 0 auto;
width: 390px;
z-index: 200;
}
.modal-body > span.divider {
color: #E0E0E0;
}
</style>
<script type="text/javascript">
$(document).ready(function () {
$('#email-signup').click(function () {
console.log('hello')
$('#github-signup').hide()
$('#google-signup').hide()
$('#email-signup').hide()
$('.divider').hide()
$('#signup-form').show()
});
$('#shell #background-clouds').plaxify()
$.plax.enable()
})
</script>
</head>
<body>
<div id="shell">
<img height="100%" width="100%" src="https://dl.dropboxusercontent.com/u/11221717/ELS-LoginSignup-1a.png" data-xrange="20" data-yrange="10" id="background-clouds"/>
<div class="logo-container">
<a href="{{ page.base_url }}"><img id="eb-logo" src="https://dl.dropboxusercontent.com/u/11221717/elasticbox-verticle-gray-light.svg"></img></a>
</div>
<div class="sign-up-block">
<div class="login-container">
<div class="login-form">
<div class="modal-header">
<h3 class="modal-title text-center">SIGN UP</h3>
</div>
<div class="modal-body">
<button type="button" class="btn btn-lg btn-primary btn-block btn-modal" id="github-signup" href="">
<i class="fa fa-github" id="small-github-icon"></i>
<span class="">SIGN UP WITH GITHUB</span>
</button>
<button type="button" class="btn btn-lg btn-google btn-block btn-modal" id="google-signup" href="">
<i class="fa fa-google-plus" id="small-github-icon"></i>
<span class="">SIGN UP WITH GOOGLE</span>
</button>
<span class="divider">Or</span>
<button type="button" class="btn btn-lg btn-email btn-block btn-modal" id="email-signup" href="">
<span class="">SIGN UP WITH EMAIL</span>
</button>
<form role="form" id="signup-form" style="display:none;">
<div class="form-group">
<label class="text-muted" for="exampleInputPassword1">Email</label>
<input type="password" class="form-control input-lg" id="exampleInputPassword1">
</div>
<div class="form-group">
<label class="text-muted" for="exampleInputPassword1">Password</label>
<input type="password" class="form-control input-lg" id="exampleInputPassword1">
</div>
<button class="btn btn-lg btn-primary btn-block" id="email-complete">Let's Go!</button>
</form>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</div>
<p class="tos text-muted text-center">By signing up you agree to ElasticBox's <a href="{{ page.base_url }}terms-of-service">terms of service</a></p>
</div>
</body>