blob: 90775cd8a7530da00b22a0ccba5fe20dcc4f96e7 (
plain)
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
|
<!doctype html>
<html>
<head>
<title>SCANNERJAMMER REGISTRATION</title>
<link rel="shortcut icon" href="http://scannerjammer.com/favicon.ico" />
<style type="text/css">
* { padding: 0; margin: 0; }
body
{
background: #040818;
overflow: hidden;
}
#bg
{
position: absolute;
top: 0;
left: 0;
z-index: -1;
display: none;
}
#success, #register, #plant { display: none; }
#success
{
position: absolute;
top: 10%;
left: 50%;
margin-left: -250px;
width: 400px;
background-color: #808;
border-bottom: 2px solid #100;
color: #ccc;
text-align: center;
padding: 30px 50px 50px 50px;
-moz-border-radius: 30px;
-webkit-border-radius: 30px;
border-radius: 30px;
font-family: sans-serif;
font-size: 24px;
}
#success a
{
color: #0ff;
font-weight: bold;
}
#success-username
{
font-weight: bold;
font-size: 36px;
color: #fff;
padding: 10px;
display: block;
}
#register
{
position: absolute;
top: 10%;
left: 30%;
background-image: url(http://asdf.us/scanjam/scanjambg1.jpg);
margin-left: -350px;
width: 600px;
background-color: #000;
color: #fff;
padding: 30px 50px 50px 50px;
-moz-border-radius: 30px;
-webkit-border-radius: 30px;
border-radius: 30px;
font-family: sans-serif;
font-size: 30px;
}
#plant
{
position: absolute;
bottom: 0;
right: 0;
z-index: -1;
}
#register h1
{
font-size: 48px;
padding-bottom: 20px;
}
img
{
padding-bottom: 20px;
}
#register input
{
font-size: 24px;
clear: right;
width: 200px;
padding: 3px;
margin-bottom: 10px;
background-color: #ddd;
border: 2px solid #333;
}
#register label
{
width: 120px;
font-size: 24px;
padding-right: 20px;
display: inline-block;
text-align: right;
}
#register button
{
font-size: 30px;
background-color: #fff;
opacity: 0.05;
font-weight: bold;
padding: 5px 10px;
}
#register span
{
font-size: 16px;
color: #0ff;
text-shadow: #888 0 0 3px;
}
#register span.error
{
color: #f00;
}
#reset
{
font-size:50%;
}
</style>
<body>
<section id="bg">
<img src="http://scannerjammer.com/img/glittergutzbg.gif" />
</section>
<section id="curtain"></section>
<section id="register">
<img src="http://scannerjammer.com/img/scanjam-title.gif" width="100%" /><br />
<h1>official registration form</h1>
<label>username:</label>
<input type="text" id="register-username" maxlength="25" />
<span id="username-available"></span>
<br />
<label>password:</label>
<input type="password" id="register-pw" maxlength="25" />
<br />
<label>again:</label>
<input type="password" id="register-pw2" maxlength="25" />
<span id="password-match"></span>
<br />
<label></label>
<button id="register-go">REGISTER</button>
<br />
<span id="reset"> Forgot your password? <a href="http://scannerjammer.com/register/reset/index.html">RESET PASSWORD</a></span>
</section>
<section id="success">
<!--
<img src="http://scannerjammer.com/img/scanjam-title.gif" width="100%" /><br />
-->
wow okay awesome! greetings,<br />
<span id="success-username"></span>
your new ghost is online and active..<br />
<br />
<a href="/" id="sj-link">WELCOME TO SCANNERJAMMER</a>
</section>
<section id="msg"></section>
<section id="plea">
please enable javascript
</section>
<section id="plant"><img src="http://scannerjammer.com/img/plant.gif" height="700" /></section>
</body>
<script type="text/javascript">document.getElementById("plea").style.display="none"</script>
<script type="text/javascript" src="/js/jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="/js/jquery.md5.js"></script>
<script type="text/javascript" src="/js/swfobject.js"></script>
<script type="text/javascript" src="/js/register.js"></script>
</html>
|