-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuy.html
70 lines (70 loc) · 2.41 KB
/
buy.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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Shuteye.co - Private, browser-based, video conferencing</title>
<link rel="icon" type="image/png" href="/img/favicon.png" />
<link rel="stylesheet" href="/css/bootstrap.css" >
<link rel="stylesheet" href="/css/shuteye.css" type="text/css">
<link rel="stylesheet" href="/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="/css/forms.css" type="text/css">
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<a class="brand" href="/">
SHUT
<i class="icon-eye-close"></i>
EYE
</a>
<ul class="nav">
<li>
<a href="/about" class="link">ABOUT</a>
</li>
<li>
<a href="http://blog.shuteye.co" class="link">BLOG</a>
</li>
</ul>
</div>
</div>
<div class="row-fluid">
<div class="offset3 span6">
<form id="payment-form" method="POST" action="/signup">
<div id="browser-not-supported" class="hide alert alert-error">
<strong>SHUTEYE DOES NOT SUPPORT YOUR BROWSER</strong>
<br/>
Use <a href="https://www.google.com/intl/en/chrome/browser/">Chrome</a> or <a href="https://www.mozilla.org/">Firefox</a> when starting a session.
</div>
{{#error}}
<div id="session-error" class="alert alert-error">
There was either an error finding your session, or the session
count has reached zero.
</div>
{{/error}}
<fieldset>
<input name="email" id="email" type="email" placeholder="Email Address" required>
<input name="password" id="password" type="password" placeholder="Password" required>
<span class="help-inline show-hide-pwd">
<a class="no-decor" href="javascript:togglePassword();">
<i id="show-password" class="icon-eye-close icon-3x" title="Show password"></i>
</a>
</span>
<span class="help-block inform" class="help-block">
YOUR PASSWORD CAN NOT BE RETRIEVED IF LOST
</span>
<input type="submit" id="submit-purchase" class="btn btn-large btn-success" value="Get 5 Sessions">
</fieldset>
</form>
</div>
</div>
<script src="/js/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="/js/forms.js" type="text/javascript"></script>
<script type="text/javascript">
if (navigator.mozGetUserMedia || navigator.webkitGetUserMedia) {
$('#browser-not-supported').toggleClass('hide', true);
} else {
$('#browser-not-supported').toggleClass('hide', false);
}
</script>
</body>
</html>