impostor 0.0.1 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +7 -1
- data/Manifest.txt +9 -0
- data/README.txt +10 -3
- data/Rakefile +1 -1
- data/lib/www/impostor/phpbb2.rb +5 -7
- data/lib/www/impostor/phpbb3.rb +236 -0
- data/lib/www/impostor.rb +1 -1
- data/test/fixtures/phpbb2-not-logged-in.html +530 -145
- data/test/fixtures/phpbb3-get-new-topic-form-good-response.html +975 -0
- data/test/fixtures/phpbb3-get-reply-form-good-response.html +1015 -0
- data/test/fixtures/phpbb3-logged-in.html +512 -0
- data/test/fixtures/phpbb3-login.html +423 -0
- data/test/fixtures/phpbb3-not-logged-in.html +426 -0
- data/test/fixtures/phpbb3-post-new_topic-good-response.html +894 -0
- data/test/fixtures/phpbb3-post-reply-good-response.html +2077 -0
- data/test/test_www_impostor_phpbb3.rb +483 -0
- metadata +19 -27
- data.tar.gz.sig +0 -3
- metadata.gz.sig +0 -3
@@ -0,0 +1,512 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-gb" xml:lang="en-gb">
|
3
|
+
<head>
|
4
|
+
<link REL="SHORTCUT ICON" HREF="http://example.com/favicon.ico">
|
5
|
+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
6
|
+
<meta http-equiv="content-language" content="en-gb" />
|
7
|
+
<meta http-equiv="content-style-type" content="text/css" />
|
8
|
+
<meta http-equiv="imagetoolbar" content="no" />
|
9
|
+
<meta name="resource-type" content="document" />
|
10
|
+
<meta name="distribution" content="global" />
|
11
|
+
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
|
12
|
+
<meta name="keywords" content="" />
|
13
|
+
<meta name="description" content="" />
|
14
|
+
<meta http-equiv="refresh" content="3;url=http://example.com/forum/index.php?sid=59aa965b8f8a2c8a2ed9f02294927da8" /><title>EXAMPLE.COM • User Control Panel • Information</title>
|
15
|
+
|
16
|
+
<link rel="stylesheet" href="./styles/GnB/theme/stylesheet.css" type="text/css" />
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
<script type="text/javascript">
|
21
|
+
// <![CDATA[
|
22
|
+
|
23
|
+
function popup(url, width, height, name)
|
24
|
+
{
|
25
|
+
if (!name)
|
26
|
+
{
|
27
|
+
name = '_popup';
|
28
|
+
}
|
29
|
+
|
30
|
+
window.open(url.replace(/&/g, '&'), name, 'height=' + height + ',resizable=yes,scrollbars=yes,width=' + width);
|
31
|
+
return false;
|
32
|
+
}
|
33
|
+
|
34
|
+
function jumpto()
|
35
|
+
{
|
36
|
+
var page = prompt('Enter the page number you wish to go to.:', '');
|
37
|
+
var perpage = '';
|
38
|
+
var base_url = '';
|
39
|
+
|
40
|
+
if (page !== null && !isNaN(page) && page > 0)
|
41
|
+
{
|
42
|
+
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * perpage);
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
/**
|
47
|
+
* Find a member
|
48
|
+
*/
|
49
|
+
function find_username(url)
|
50
|
+
{
|
51
|
+
popup(url, 760, 570, '_usersearch');
|
52
|
+
return false;
|
53
|
+
}
|
54
|
+
|
55
|
+
/**
|
56
|
+
* Mark/unmark checklist
|
57
|
+
* id = ID of parent container, name = name prefix, state = state [true/false]
|
58
|
+
*/
|
59
|
+
function marklist(id, name, state)
|
60
|
+
{
|
61
|
+
var parent = document.getElementById(id);
|
62
|
+
if (!parent)
|
63
|
+
{
|
64
|
+
eval('parent = document.' + id);
|
65
|
+
}
|
66
|
+
|
67
|
+
if (!parent)
|
68
|
+
{
|
69
|
+
return;
|
70
|
+
}
|
71
|
+
|
72
|
+
var rb = parent.getElementsByTagName('input');
|
73
|
+
|
74
|
+
for (var r = 0; r < rb.length; r++)
|
75
|
+
{
|
76
|
+
if (rb[r].name.substr(0, name.length) == name)
|
77
|
+
{
|
78
|
+
rb[r].checked = state;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
|
84
|
+
// ]]>
|
85
|
+
</script>
|
86
|
+
<SCRIPT TYPE="text/javascript">
|
87
|
+
<!--
|
88
|
+
// copyright 1999 Idocs, Inc. http://www.idocs.com/tags/
|
89
|
+
// Distribute this script freely, but please keep this
|
90
|
+
// notice with the code.
|
91
|
+
|
92
|
+
var rollOverArr=new Array();
|
93
|
+
function setrollover(OverImgSrc,pageImageName)
|
94
|
+
{
|
95
|
+
if (! document.images)return;
|
96
|
+
if (pageImageName == null)
|
97
|
+
pageImageName = document.images[document.images.length-1].name;
|
98
|
+
rollOverArr[pageImageName]=new Object;
|
99
|
+
rollOverArr[pageImageName].overImg = new Image;
|
100
|
+
rollOverArr[pageImageName].overImg.src=OverImgSrc;
|
101
|
+
}
|
102
|
+
|
103
|
+
function rollover(pageImageName)
|
104
|
+
{
|
105
|
+
if (! document.images)return;
|
106
|
+
if (! rollOverArr[pageImageName])return;
|
107
|
+
if (! rollOverArr[pageImageName].outImg)
|
108
|
+
{
|
109
|
+
rollOverArr[pageImageName].outImg = new Image;
|
110
|
+
rollOverArr[pageImageName].outImg.src = document.images[pageImageName].src;
|
111
|
+
}
|
112
|
+
document.images[pageImageName].src=rollOverArr[pageImageName].overImg.src;
|
113
|
+
}
|
114
|
+
|
115
|
+
function rollout(pageImageName)
|
116
|
+
{
|
117
|
+
if (! document.images)return;
|
118
|
+
if (! rollOverArr[pageImageName])return;
|
119
|
+
document.images[pageImageName].src=rollOverArr[pageImageName].outImg.src;
|
120
|
+
}
|
121
|
+
//-->
|
122
|
+
</SCRIPT>
|
123
|
+
|
124
|
+
</head>
|
125
|
+
<body class="ltr">
|
126
|
+
|
127
|
+
<a name="top"></a>
|
128
|
+
|
129
|
+
<div id="wrapheader">
|
130
|
+
<table id="bx" width="100%" border="0" cellpadding="0" cellspacing="0">
|
131
|
+
<tr>
|
132
|
+
<table id="bx" width="100%" height="40" border="0" cellpadding="0" cellspacing="0">
|
133
|
+
<td><img src="./styles/GnB/theme/images/header/h11.png" width="40" height="40" alt=""></td>
|
134
|
+
<td><img src="./styles/GnB/theme/images/header/h12.png" width="100" height="40" alt=""></td>
|
135
|
+
<td background="./styles/GnB/theme/images/header/h13.png" width="100%" height="40">
|
136
|
+
<td><img src="./styles/GnB/theme/images/header/h14.png" width="100" height="40" alt=""></td>
|
137
|
+
<td><img src="./styles/GnB/theme/images/header/h15.png" width="40" height="40" alt=""></td>
|
138
|
+
</table>
|
139
|
+
</tr>
|
140
|
+
<tr>
|
141
|
+
<table id="bx" width="100%" height="140" border="0" cellpadding="0" cellspacing="0">
|
142
|
+
<td><img src="./styles/GnB/theme/images/header/h21.png" width="40" height="140" alt=""></td>
|
143
|
+
<td><img src="./styles/GnB/theme/images/header/h22.png" width="100" height="140" alt=""></td>
|
144
|
+
<td background="./styles/GnB/theme/images/header/h23.png" width="100%" height="140">
|
145
|
+
<div id="logodesc">
|
146
|
+
<table width="100%" cellspacing="0">
|
147
|
+
<tr>
|
148
|
+
<td><a href="./index.php?sid=59aa965b8f8a2c8a2ed9f02294927da8"><img src="./styles/GnB/imageset/site_logo.png" width="480" height="80" alt="" title="" /></a></td>
|
149
|
+
<td width="100%" align="center"><h1>EXAMPLE.COM</h1><span class="gen">HOME OF THE MEATSHIELDS</span></td>
|
150
|
+
</tr>
|
151
|
+
</table>
|
152
|
+
</div>
|
153
|
+
</td>
|
154
|
+
<td><img src="./styles/GnB/theme/images/header/h24.png" width="100" height="140" alt=""></td>
|
155
|
+
<td><img src="./styles/GnB/theme/images/header/h25.png" width="40" height="140" alt=""></td>
|
156
|
+
</table>
|
157
|
+
</tr>
|
158
|
+
<tr>
|
159
|
+
<table id="bx" width="100%" height="66" border="0" cellpadding="0" cellspacing="0">
|
160
|
+
<td><img src="./styles/GnB/theme/images/header/h31.png" width="40" height="66" alt=""></td>
|
161
|
+
<td><img src="./styles/GnB/theme/images/header/h32.png" width="100" height="66" alt=""></td>
|
162
|
+
<td background="./styles/GnB/theme/images/header/h33.png" width="20%" height="66" align="center">
|
163
|
+
<A HREF="./index.php?sid=59aa965b8f8a2c8a2ed9f02294927da8"
|
164
|
+
onMouseOver = "rollover('home')"
|
165
|
+
onMouseOut = "rollout('home')"
|
166
|
+
>
|
167
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/home1.png"
|
168
|
+
NAME="home"
|
169
|
+
ALT="Home Page" BORDER=0
|
170
|
+
HEIGHT=40 WIDTH=101
|
171
|
+
>
|
172
|
+
</A>
|
173
|
+
<SCRIPT TYPE="text/javascript">
|
174
|
+
<!--
|
175
|
+
setrollover("./styles/GnB/theme/images/buttons/home2.png");
|
176
|
+
//-->
|
177
|
+
</SCRIPT>
|
178
|
+
</td>
|
179
|
+
<td background="./styles/GnB/theme/images/header/h33.png" width="20%" height="66" align="center">
|
180
|
+
<A HREF="./faq.php?sid=59aa965b8f8a2c8a2ed9f02294927da8"
|
181
|
+
onMouseOver = "rollover('faq')"
|
182
|
+
onMouseOut = "rollout('faq')"
|
183
|
+
>
|
184
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/faq1.png"
|
185
|
+
NAME="faq"
|
186
|
+
ALT="Home Page" BORDER=0
|
187
|
+
HEIGHT=40 WIDTH=101
|
188
|
+
>
|
189
|
+
</A>
|
190
|
+
<SCRIPT TYPE="text/javascript">
|
191
|
+
<!--
|
192
|
+
setrollover("./styles/GnB/theme/images/buttons/faq2.png");
|
193
|
+
//-->
|
194
|
+
</SCRIPT>
|
195
|
+
</td>
|
196
|
+
<td background="./styles/GnB/theme/images/header/h33.png" width="20%" height="66" align="center">
|
197
|
+
<A HREF="./memberlist.php?mode=leaders&sid=59aa965b8f8a2c8a2ed9f02294927da8"
|
198
|
+
onMouseOver = "rollover('team')"
|
199
|
+
onMouseOut = "rollout('team')"
|
200
|
+
>
|
201
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/team1.png"
|
202
|
+
NAME="team"
|
203
|
+
ALT="Home Page" BORDER=0
|
204
|
+
HEIGHT=40 WIDTH=101
|
205
|
+
>
|
206
|
+
</A>
|
207
|
+
<SCRIPT TYPE="text/javascript">
|
208
|
+
<!--
|
209
|
+
setrollover("./styles/GnB/theme/images/buttons/team2.png");
|
210
|
+
//-->
|
211
|
+
</SCRIPT>
|
212
|
+
</td>
|
213
|
+
<td background="./styles/GnB/theme/images/header/h33.png" width="20%" height="66" align="center">
|
214
|
+
<A HREF="./search.php?sid=59aa965b8f8a2c8a2ed9f02294927da8"
|
215
|
+
onMouseOver = "rollover('search')"
|
216
|
+
onMouseOut = "rollout('search')"
|
217
|
+
>
|
218
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/search1.png"
|
219
|
+
NAME="search"
|
220
|
+
ALT="Home Page" BORDER=0
|
221
|
+
HEIGHT=40 WIDTH=101
|
222
|
+
>
|
223
|
+
</A>
|
224
|
+
<SCRIPT TYPE="text/javascript">
|
225
|
+
<!--
|
226
|
+
setrollover("./styles/GnB/theme/images/buttons/search2.png");
|
227
|
+
//-->
|
228
|
+
</SCRIPT>
|
229
|
+
</td>
|
230
|
+
<td background="./styles/GnB/theme/images/header/h33.png" width="20%" height="66" align="center">
|
231
|
+
<A HREF="./memberlist.php?sid=59aa965b8f8a2c8a2ed9f02294927da8"
|
232
|
+
onMouseOver = "rollover('members')"
|
233
|
+
onMouseOut = "rollout('members')"
|
234
|
+
>
|
235
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/members1.png"
|
236
|
+
NAME="members"
|
237
|
+
ALT="Home Page" BORDER=0
|
238
|
+
HEIGHT=40 WIDTH=101
|
239
|
+
>
|
240
|
+
</A>
|
241
|
+
<SCRIPT TYPE="text/javascript">
|
242
|
+
<!--
|
243
|
+
setrollover("./styles/GnB/theme/images/buttons/members2.png");
|
244
|
+
//-->
|
245
|
+
</SCRIPT>
|
246
|
+
</td>
|
247
|
+
<td background="./styles/GnB/theme/images/header/h33.png" width="100%" height="66"></td>
|
248
|
+
<td><img src="./styles/GnB/theme/images/header/h34.png" width="100" height="66" alt=""></td>
|
249
|
+
<td><img src="./styles/GnB/theme/images/header/h35.png" width="40" height="66" alt=""></td>
|
250
|
+
</table>
|
251
|
+
</tr>
|
252
|
+
</table>
|
253
|
+
</div>
|
254
|
+
|
255
|
+
<div id="wrapcentre">
|
256
|
+
<table id="bx" width="100%" border="0" cellpadding="0" cellspacing="0">
|
257
|
+
<tr>
|
258
|
+
<table id="bx" height="45" border="0" cellpadding="0" cellspacing="0" align="center">
|
259
|
+
<td><img src="./styles/GnB/theme/images/p_menu/p_01.png" width="61" height="45" alt=""></td>
|
260
|
+
<td background="./styles/GnB/theme/images/p_menu/p_02.png" width="20%" height="45"></td>
|
261
|
+
<td><img src="./styles/GnB/theme/images/p_menu/cu_l.png" width="44" height="45" alt=""></td>
|
262
|
+
<td background="./styles/GnB/theme/images/p_menu/cu_m.png" width="20%" height="45" align="center">
|
263
|
+
<h5>
|
264
|
+
<a href="./ucp.php?i=pm&folder=inbox&sid=59aa965b8f8a2c8a2ed9f02294927da8"> <strong>0</strong> new messages </a>
|
265
|
+
</h5>
|
266
|
+
</td>
|
267
|
+
<td background="./styles/GnB/theme/images/p_menu/cu_m.png" width="20%" height="45" align="center">
|
268
|
+
<h5>
|
269
|
+
<a href="./ucp.php?mode=logout&sid=59aa965b8f8a2c8a2ed9f02294927da8"> Logout [ tester ]</a>
|
270
|
+
</h5>
|
271
|
+
</td>
|
272
|
+
<td background="./styles/GnB/theme/images/p_menu/cu_m.png" width="20%" height="45" align="center">
|
273
|
+
<h5>
|
274
|
+
<a href="./ucp.php?sid=59aa965b8f8a2c8a2ed9f02294927da8"> User Control Panel</a>
|
275
|
+
</h5>
|
276
|
+
</td>
|
277
|
+
<td><img src="./styles/GnB/theme/images/p_menu/cu_r.png" width="45" height="45" alt=""></td>
|
278
|
+
<td background="./styles/GnB/theme/images/p_menu/p_02.png" width="20%" height="45"></td>
|
279
|
+
<td><img src="./styles/GnB/theme/images/p_menu/p_03.png" width="61" height="45" alt=""></td>
|
280
|
+
</table>
|
281
|
+
</tr>
|
282
|
+
<tr>
|
283
|
+
<table id="bx" height="45" border="0" cellpadding="0" cellspacing="0">
|
284
|
+
<td><img src="./styles/GnB/theme/images/p_menu/p_08.png" width="61" height="45" alt=""></td>
|
285
|
+
<td background="./styles/GnB/theme/images/p_menu/p_85.png" width="100%" height="45">
|
286
|
+
<table width="100%" cellspacing="0">
|
287
|
+
<tr>
|
288
|
+
<td background="./styles/GnB/theme/images/p_menu/p_85.png" width="10%" height="36" align="center">
|
289
|
+
<A HREF="./search.php?search_id=unanswered&sid=59aa965b8f8a2c8a2ed9f02294927da8"
|
290
|
+
onMouseOver = "rollover('search_unanswered')"
|
291
|
+
onMouseOut = "rollout('search_unanswered')"
|
292
|
+
>
|
293
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/ut1.png"
|
294
|
+
NAME="search_unanswered"
|
295
|
+
ALT="View unanswered posts" BORDER=0
|
296
|
+
HEIGHT=36 WIDTH=150
|
297
|
+
>
|
298
|
+
</A>
|
299
|
+
<SCRIPT TYPE="text/javascript">
|
300
|
+
<!--
|
301
|
+
setrollover("./styles/GnB/theme/images/buttons/ut2.png");
|
302
|
+
//-->
|
303
|
+
</SCRIPT>
|
304
|
+
</td>
|
305
|
+
<td background="./styles/GnB/theme/images/p_menu/p_85.png" width="10%" height="36" align="center">
|
306
|
+
<A HREF="./search.php?search_id=active_topics&sid=59aa965b8f8a2c8a2ed9f02294927da8"
|
307
|
+
onMouseOver = "rollover('search_active')"
|
308
|
+
onMouseOut = "rollout('search_active')"
|
309
|
+
>
|
310
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/at1.png"
|
311
|
+
NAME="search_active"
|
312
|
+
ALT="View active topics" BORDER=0
|
313
|
+
HEIGHT=36 WIDTH=150
|
314
|
+
>
|
315
|
+
</A>
|
316
|
+
<SCRIPT TYPE="text/javascript">
|
317
|
+
<!--
|
318
|
+
setrollover("./styles/GnB/theme/images/buttons/at2.png");
|
319
|
+
//-->
|
320
|
+
</SCRIPT>
|
321
|
+
</td>
|
322
|
+
<td align="center" width="60%">
|
323
|
+
Last visit was: Sat Jul 05, 2008 1:20 am </td>
|
324
|
+
<td background="./styles/GnB/theme/images/p_menu/p_85.png" width="10%" height="36" align="center">
|
325
|
+
<A HREF="./search.php?search_id=newposts&sid=59aa965b8f8a2c8a2ed9f02294927da8"
|
326
|
+
onMouseOver = "rollover('search_new')"
|
327
|
+
onMouseOut = "rollout('search_new')"
|
328
|
+
>
|
329
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/np1.png"
|
330
|
+
NAME="search_new"
|
331
|
+
ALT="View new posts" BORDER=0
|
332
|
+
HEIGHT=36 WIDTH=150
|
333
|
+
>
|
334
|
+
</A>
|
335
|
+
<SCRIPT TYPE="text/javascript">
|
336
|
+
<!--
|
337
|
+
setrollover("./styles/GnB/theme/images/buttons/np2.png");
|
338
|
+
//-->
|
339
|
+
</SCRIPT>
|
340
|
+
</td>
|
341
|
+
<td background="./styles/GnB/theme/images/p_menu/p_85.png" width="10%" height="36" align="center">
|
342
|
+
<A HREF="./search.php?search_id=egosearch&sid=59aa965b8f8a2c8a2ed9f02294927da8"
|
343
|
+
onMouseOver = "rollover('search_your')"
|
344
|
+
onMouseOut = "rollout('search_your')"
|
345
|
+
>
|
346
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/yp1.png"
|
347
|
+
NAME="search_your"
|
348
|
+
ALT="View your posts" BORDER=0
|
349
|
+
HEIGHT=36 WIDTH=150
|
350
|
+
>
|
351
|
+
</A>
|
352
|
+
<SCRIPT TYPE="text/javascript">
|
353
|
+
<!--
|
354
|
+
setrollover("./styles/GnB/theme/images/buttons/yp2.png");
|
355
|
+
//-->
|
356
|
+
</SCRIPT>
|
357
|
+
</td>
|
358
|
+
</tr>
|
359
|
+
</table>
|
360
|
+
</td>
|
361
|
+
<td><img src="./styles/GnB/theme/images/p_menu/p_09.png" width="61" height="45" alt=""></td>
|
362
|
+
</table>
|
363
|
+
</tr>
|
364
|
+
<tr>
|
365
|
+
<table id="bx" height="40" border="0" cellpadding="0" cellspacing="0">
|
366
|
+
<td><img src="./styles/GnB/theme/images/p_menu/p_10.png" width="61" height="40" alt=""></td>
|
367
|
+
<td background="./styles/GnB/theme/images/p_menu/p_11.png" width="50%" height="40"></td>
|
368
|
+
<td background="./styles/GnB/theme/images/p_menu/clock.png" width="350" height="40">
|
369
|
+
<p class="gensmallclock" align="center">
|
370
|
+
<script language="javascript" src="./styles/GnB/template/liveclock.js">
|
371
|
+
</script>
|
372
|
+
</p>
|
373
|
+
</td>
|
374
|
+
<td background="./styles/GnB/theme/images/p_menu/p_11.png" width="20%" height="40"></td>
|
375
|
+
<td background="./styles/GnB/theme/images/p_menu/p_11.png" width="30%" height="40" align="right">
|
376
|
+
<a href="./ucp.php?mode=delete_cookies&sid=59aa965b8f8a2c8a2ed9f02294927da8">Delete all board cookies</a>
|
377
|
+
</td>
|
378
|
+
<td><img src="./styles/GnB/theme/images/p_menu/p_13.png" width="61" height="40" alt=""></td>
|
379
|
+
</table>
|
380
|
+
</tr>
|
381
|
+
</table>
|
382
|
+
|
383
|
+
<table width="100%" cellspacing="0" cellpadding="0" style="margin-top: 5px;">
|
384
|
+
<tr>
|
385
|
+
<td><img src="./styles/GnB/theme/images/nav01.png" width="46" height="55" alt=""></td>
|
386
|
+
|
387
|
+
<td width="100%" background="./styles/GnB/theme/images/nav02.png" width="100%" height="55">
|
388
|
+
<p class="breadcrumbs"><a href="./index.php?sid=59aa965b8f8a2c8a2ed9f02294927da8">Board index</a></p>
|
389
|
+
<p class="datetime">All times are UTC - 8 hours [ <abbr title="Daylight Saving Time">DST</abbr> ]</p>
|
390
|
+
</td>
|
391
|
+
<td><img src="./styles/GnB/theme/images/nav03.png" width="46" height="55" alt=""></td>
|
392
|
+
|
393
|
+
</tr>
|
394
|
+
</table>
|
395
|
+
<br />
|
396
|
+
|
397
|
+
<table width="100%" height="44" border="0" cellpadding="0" cellspacing="0">
|
398
|
+
<tr>
|
399
|
+
<table width="100%" height="44" border="0" cellpadding="0" cellspacing="0">
|
400
|
+
|
401
|
+
<td><img src="./styles/GnB/theme/images/box_01.png" width="41" height="48" alt=""></td>
|
402
|
+
<td background="./styles/GnB/theme/images/box_02.png" width="50%" height="48"></td>
|
403
|
+
|
404
|
+
<td background="./styles/GnB/theme/images/cu.png" width="300" height="48">
|
405
|
+
|
406
|
+
<h4 align="center">Information</h4></td>
|
407
|
+
|
408
|
+
<td background="./styles/GnB/theme/images/box_02.png" width="50%" height="48"></td>
|
409
|
+
|
410
|
+
<td><img src="./styles/GnB/theme/images/box_04.png" width="41" height="48" align="right">
|
411
|
+
|
412
|
+
|
413
|
+
|
414
|
+
</table>
|
415
|
+
</tr>
|
416
|
+
|
417
|
+
<tr>
|
418
|
+
<table width="100%" cellspacing="0">
|
419
|
+
<td background="./styles/GnB/theme/images/box_08.png" width="41" height="100%"></td>
|
420
|
+
|
421
|
+
<td class="row1" align="center"><br /><p class="gen">You have been successfully logged in.<br /><br /><a href="index.php?sid=59aa965b8f8a2c8a2ed9f02294927da8">Return to the index page</a></p><br /></td>
|
422
|
+
<td background="./styles/GnB/theme/images/box_09.png" width="41" height="100%"></td>
|
423
|
+
|
424
|
+
</table>
|
425
|
+
</tr>
|
426
|
+
|
427
|
+
<tr>
|
428
|
+
<table width="100%" cellspacing="0">
|
429
|
+
|
430
|
+
<td><img src="./styles/GnB/theme/images/box_10.png" width="41" height="46" alt=""></td>
|
431
|
+
<td background="./styles/GnB/theme/images/box_11.png" width="100%" height="46"></td>
|
432
|
+
<td><img src="./styles/GnB/theme/images/box_13.png" width="41" height="46" alt=""></td>
|
433
|
+
</table>
|
434
|
+
</tr>
|
435
|
+
|
436
|
+
</table>
|
437
|
+
<br clear="all" />
|
438
|
+
|
439
|
+
<table width="100%" cellspacing="0" cellpadding="0" style="margin-top: 5px;">
|
440
|
+
<tr>
|
441
|
+
<td><img src="./styles/GnB/theme/images/nav01.png" width="46" height="55" alt=""></td>
|
442
|
+
|
443
|
+
<td width="100%" background="./styles/GnB/theme/images/nav02.png" width="100%" height="55">
|
444
|
+
<p class="breadcrumbs"><a href="./index.php?sid=59aa965b8f8a2c8a2ed9f02294927da8">Board index</a></p>
|
445
|
+
<p class="datetime">All times are UTC - 8 hours [ <abbr title="Daylight Saving Time">DST</abbr> ]</p>
|
446
|
+
</td>
|
447
|
+
<td><img src="./styles/GnB/theme/images/nav03.png" width="46" height="55" alt=""></td>
|
448
|
+
|
449
|
+
</tr>
|
450
|
+
</table></div>
|
451
|
+
|
452
|
+
<!--
|
453
|
+
We request you retain the full copyright notice below including the link to www.phpbb.com.
|
454
|
+
This not only gives respect to the large amount of time given freely by the developers
|
455
|
+
but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain
|
456
|
+
the full copyright we ask you at least leave in place the "Powered by phpBB" line, with
|
457
|
+
"phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our
|
458
|
+
forums may be affected.
|
459
|
+
|
460
|
+
The phpBB Group : 2006
|
461
|
+
//-->
|
462
|
+
|
463
|
+
<div id="wrapfooter">
|
464
|
+
|
465
|
+
|
466
|
+
|
467
|
+
</div>
|
468
|
+
|
469
|
+
|
470
|
+
|
471
|
+
|
472
|
+
|
473
|
+
|
474
|
+
|
475
|
+
<table id="bx" width="100%" height="99" border="0" cellpadding="0" cellspacing="0">
|
476
|
+
<td><img src="./styles/GnB/theme/images/footer/f_01.png" width="81" height="99" alt=""></td>
|
477
|
+
<td background="./styles/GnB/theme/images/footer/f_02.png" width="100%" height="99" alt=""></td>
|
478
|
+
<td><img src="./styles/GnB/theme/images/footer/f_03.png" width="82" height="99" alt=""></td>
|
479
|
+
</table>
|
480
|
+
|
481
|
+
|
482
|
+
<table id="bx" width="100%" height="89" border="0" cellpadding="0" cellspacing="0">
|
483
|
+
<td><img src="./styles/GnB/theme/images/footer/f_10.png" width="81" height="89" alt=""></td>
|
484
|
+
<td><a href="http://www.phpbb.com"><img src="./styles/GnB/theme/images/footer/f_11.png" width="170" height="89" alt=""></a></td>
|
485
|
+
<td background="./styles/GnB/theme/images/footer/f_12.png" width="50%" height="89" alt=""></td>
|
486
|
+
<td><a href="http://www.phpbb-fox.info"><img src="./styles/GnB/theme/images/footer/f_13.png" width="120" height="89" alt=""></a></td>
|
487
|
+
<td background="./styles/GnB/theme/images/footer/f_12.png" width="50%" height="89" alt=""></td>
|
488
|
+
<td><a href="http://www.phpbb-fox.info"><img src="./styles/GnB/theme/images/footer/f_14.png" width="170" height="89" alt=""></a></td>
|
489
|
+
<td><img src="./styles/GnB/theme/images/footer/f_15.png" width="82" height="89" alt=""></td>
|
490
|
+
|
491
|
+
</table>
|
492
|
+
|
493
|
+
<table id="bx" width="100%" border="0" cellpadding="0" cellspacing="0" align="center">
|
494
|
+
|
495
|
+
<tr>
|
496
|
+
<td align="center"
|
497
|
+
</span>
|
498
|
+
</td>
|
499
|
+
</tr>
|
500
|
+
</table>
|
501
|
+
|
502
|
+
|
503
|
+
|
504
|
+
|
505
|
+
|
506
|
+
|
507
|
+
|
508
|
+
|
509
|
+
|
510
|
+
|
511
|
+
</body>
|
512
|
+
</html>
|