-
Notifications
You must be signed in to change notification settings - Fork 0
/
thievery.html
695 lines (480 loc) · 27.1 KB
/
thievery.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta name="google-site-verification" content="zx76jZJ5vLEImdzmHRfa_rmRl5tLM1PCUIpzawwVxO0" />
<title>
Utopia
-
Thievery Page
</title>
<link rel="shortcut icon" href="http://utopia-game.com/static/common/images/fav_icon.png" />
<!-- STYLE SHEETS -->
<link rel="stylesheet" type="text/css" href="http://utopia-game.com/static/common/css/reset.css" />
<link rel="stylesheet" type="text/css" href="http://utopia-game.com/static/external/jquery-jgrowl/jquery.jgrowl.css">
<link rel="stylesheet" type="text/css" href="http://utopia-game.com/static/common/css/layout.css" />
<link rel="stylesheet" type="text/css" href="http://utopia-game.com/static/common/css/uniform.default.css" />
<link rel="Stylesheet" type="text/css" href="http://utopia-game.com/static/common/css/ui-lightness/jquery-ui-1.8.21.custom.css"/>
<link rel="stylesheet" type="text/css" href="http://utopia-game.com/static/external/jquery-wysiwyg/jquery.wysiwyg.css">
<link rel="stylesheet" type="text/css" href="theme.css" />
<!-- SCRIPTS -->
<script type="text/javascript" src="http://utopia-game.com/static/common/js/jquery-1.8.1.min.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/common/js/jquery-ui-1.8.21.custom.min.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/common/js/jquery-plugins.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/common/js/utils.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/common/js/django_jquery_ajax.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/common/js/account_options.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/common/js/jquery.uniform.min.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/common/js/feedback.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/common/js/jquery.tools.min.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/external/jquery-c/cc.min.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/external/jquery-c/swfobject-2.2.min.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/external/jquery-wysiwyg/jquery.wysiwyg.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/external/jquery-jgrowl/jquery.jgrowl.min.js"></script>
<script type="text/javascript">
function setupJWYSIWYG() {
// Style any formatted comments on the page.
$('textarea.formatted-text').wysiwyg({
'controls': {
'justifyLeft': {'visible': false},
'justifyCenter': {'visible': false},
'justifyRight': {'visible': false},
'justifyFull': {'visible': false},
'indent': {'visible': false},
'outdent': {'visible': false},
'undo': {'visible': false},
'redo': {'visible': false},
'insertHorizontalRule': {'visible': false},
'insertImage': {'visible': false},
'h1': {'visible': true},
'h2': {'visible': false},
'h3': {'visible': false},
'paragraph': {'visible': false},
'increaseFontSize': {'visible': false},
'decreaseFontSize': {'visible': false},
'html': {'visible': false},
'insertTable': {'visible': false},
'createLink': {'visible': false},
'code': {'visible': false},
'removeFormat': {'visible': false},
'strikeThrough': {'visible': false},
'subscript': {'visible': false},
'superscript': {'visible': false}
},
'css': 'http://utopia-game.com/static/common/css/classic_theme/theme.css',
'initialContent': '',
'iFrameClass': 'formatted-comment',
'autoSave': true
});
}
$(document).ready(function(eventObject) {
// Setup any editable text areas.
setupJWYSIWYG();
// Setup triggers that open overlays/lightboxes
var overlay_params = {
mask: {
color: '#000000',
loadSpeed: 200,
opacity: 0.5
}
};
$(".overlay-trigger[rel]").overlay(overlay_params);
// Setup uniform form styling.
$("select, input:checkbox, input:radio, input:file").uniform();
// Catch clicks on shop login links
$(".shop-login-link").click(function() {
$("#id-shop-login-form").submit();
});
});
</script>
<script type="text/javascript">
(function() {
function async_load(script_url){
var protocol = ('https:' == document.location.protocol ? 'https://' : 'http://');
var s = document.createElement('script'); s.src = protocol + script_url;
var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x);
}
bm_website_code = '386692AE089311E2';
jQuery(document).ready(function(){async_load('asset.pagefair.com/measure.min.js')});
jQuery(document).ready(function(){async_load('asset.pagefair.net/ads.min.js')});
})();
</script>
<!-- UA -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-10656365-12', {
'clientId': '2BC5DEE2'
});
ga('send', 'pageview');
</script>
<!-- PUT THIS TAG IN THE head SECTION -->
<script type="text/javascript" src="http://partner.googleadservices.com/gampad/google_service.js">
</script>
<script type="text/javascript">
GS_googleAddAdSenseService("ca-pub-8478455431877379");
GS_googleEnableAllServices();
</script>
<script type="text/javascript">
GA_googleAddSlot("ca-pub-8478455431877379", "Utopia_game-mid_mpu");
GA_googleAddSlot("ca-pub-8478455431877379", "Utopia_game-right_skyscraper");
GA_googleAddSlot("ca-pub-8478455431877379", "Utopia_game-top_leaderboard");
</script>
<script type="text/javascript">
GA_googleFetchAds();
</script>
<!-- END OF TAG FOR head SECTION -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-10656365-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = 'http://www.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();
</script>
<script type="text/javascript">
// NOTE: This solution reports false positives when a user alt-tabs out of a page while hovering over an ad.
$(document).ready( function() {
// Flag that tracks whether the mouse is hovering over an iFrame.
var overiFrame = false;
infunc = function() { overiFrame = true; };
outfunc = function() { overiFrame = false; };
// Setup infunc, outfunc handlers for all standard IAB sizes
// See http://en.wikipedia.org/wiki/Web_banner
$('#leaderboard-ad,#skyscraper-ad,#ad-words').hover(infunc, outfunc);
user_type = function() {
var history = getCookie('bm_history');
var u_type = 'normal_user';
if (history != null){
var h_list = history.split(',');
// unblocked users have particular statuses in their history
// NOT_BLOCKING
// or FIRST_NOT_BLOCKING and !BLOCKING
if (h_list.indexOf('VIEWED_APPEAL') != -1
&& (h_list.indexOf('NOT_BLOCKING') != -1
|| (h_list.indexOf('FIRST_NOT_BLOCKING') != -1 && h_list.indexOf('BLOCKING') == -1))){
u_type = 'unblocked_user';
}
}
return u_type;
}
// If the window loses focus, assume it's because the use clicked on an ad in the iframes.
var probable_click_reported = false;
$(window).blur( function(e) {
if(overiFrame && !probable_click_reported) {
_gaq.push(['_trackEvent', 'probable_ad_click', user_type()]);
probable_click_reported = true;
}
});
// This version is more sure to work, and is only called if the page location is about to change.
// However, it may not work on as many browsers and needs to be properly tested against actual adsense iframes.
var click_reported = false;
window.onbeforeunload = function() {
if(overiFrame && !click_reported) {
_gaq.push(['_trackEvent', 'definite_ad_click', user_type()]);
click_reported = true;
}
};
});
</script>
<script type="text/javascript" src="http://utopia-game.com/static/common/js/jquery.selectbox-0.5.js"></script>
<script type="text/javascript" src="http://utopia-game.com/static/common/js/bookmark_options.js"></script>
</head>
<body>
<!-- Facebook like API follows. -->
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div id="outer-container">
<div id="inner-container">
<div id="header">
<a href="/shared//"><div id="header-logo"></div></a>
<div id="header-navigation">
<div class="navigation"><a href="/shared/lobby/">Lobby</a></div>
<div class="navigation"><a class="shop-login-link" href="#">Shop</a></div>
<div class="navigation"><a href="/shared/common/ranking_archive/">Rankings</a></div>
<div class="navigation"><a href="http://forums.utopia-game.com/forumdisplay.php?1527-Utopia">Forum</a></div>
<div class="navigation"><a href="http://wiki.utopia-game.com/index.php?title=Game_Rules">Rules</a></div>
<div class="navigation"><a href="http://wiki.utopia-game.com/">Guide</a></div>
<div class="navigation"><a href="http://blog.utopia-game.com/">Blog</a></div>
</div>
<div>
<form id="id-shop-login-form" method="post" action="http://shop.utopia-game.com/account_management/login_from_game/">
<input type="hidden" name="auth_token" value="FDp55UjXu+5gAonenS0fVvVMdRE+npF5g0ZmOnY/ezdj3rznQlay56bBgg6JNPinvvd2Ewh9Z6uPId7qsJnVHtXRQDXTa913KsYaciLBMVSeUT5zvzwJ0iE3/QOxAEyRMemDwk++DxcBvcn2UkrsTVfgSFzbzfn/Rpfjb11C3CCo+yCeCQhjzks8vC/6wI8VJmbN5j8ConjnH6Y39CfZ/g==" />
<input type="hidden" name="checksum" value="527d45983a3ca7e69908b7e0c1ef05fd" />
</form>
</div>
<div id="account-container">
<div id="account-header" rel="#account-details">
<div class="account-image"></div>
<div class="account-name">
Name
</div>
<div class="down-arrow"></div>
</div>
<div id="account-details" class="shadow navigation">
<div class="account-title">Account Details</div>
<div class="account-summary">
<div>First Last</div>
<div>[email protected]</div>
</div>
<div id="account-links">
<div id="account-link-remove-ads"><a href="/shared/adblocker/update/">Remove Advertising</a></div>
<div id="account-link-edit-profile"><a href="/shared//user_profile_edit/">Public Profile</a></div>
<div id="account-link-settings"><a href="/shared//account_settings/">Account Settings</a></div>
<div id="account-link-report-bug"><a href="/shared/feedback/report_bug_instructions/">Report Bug</a></div>
</div>
<div class="account-signout"><a href="/shared//logout/?next=/">Log Out</a></div>
</div>
</div>
</div>
<div id="middle">
<div id="left-column">
<div style="width: 750px;height: 90px;padding: 5px;margin-left: 100px;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-5229636934656944";
/* Utopia Top Leaderboard */
google_ad_slot = "6195952045";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<div id="1822111901" zone_id="1822111901" class="pagefair-acceptable"></div>
</div>
<div id="content-area">
<div id="game-navigation">
<div class="current-date">Apr 14, YR0</div>
<div class="navigation">
<div><a href="/wol/game/throne">Throne</a></div>
<div><a href="/wol/game/kingdom_details">Kingdom</a></div>
<div><a href="/wol/game/province_news">News</a></div>
</div>
<div class="navigation">
<div><a href="/wol/game/explore">Explore</a></div>
<div><a href="/wol/game/build">Growth</a></div>
<div><a href="/wol/game/science">Sciences</a></div>
<div><a href="/wol/game/train_army">Military</a></div>
<div><a href="/wol/game/wizards">Wizards</a></div>
</div>
<div class="navigation">
<div><a href="/wol/game/enchantment">Mystics</a></div>
<div><a href="/wol/game/thievery">Thievery</a></div>
<div><a href="/wol/game/send_armies">War Room</a></div>
<div><a href="/wol/game/aid">Aid</a></div>
</div>
<div class="navigation">
<div><a href="/wol/mail/inbox/">Mail</a></div>
<div><a href="/wol/kingdom_forum/topics/">Forum</a></div>
</div>
<div class="navigation">
<div><a href="/wol/game/vote">Politics</a></div>
<div><a href="/wol/game/ranking">Rankings</a></div>
</div>
<div class="navigation">
<div><a href="/wol/game/preferences/">Preferences</a></div>
</div>
</div>
<table id="resource-bar">
<thead>
<tr>
<th>Money</th>
<th>Peasants</th>
<th>Food</th>
<th>Runes</th>
<th>Net Worth</th>
<th>Land</th>
<th>Net Worth/Acre</th>
</tr>
</thead>
<tbody>
<tr>
<th>9,463</th>
<th>5,629</th>
<th>11,307</th>
<th>8,703</th>
<th>74,369</th>
<th>520</th>
<th>143.017</th>
</tr>
</tbody>
</table>
<div class="game-header">
<h1>Thievery</h1>
</div>
<div class="game-content">
<p>You descend into an underground area of your castle and enter the Guild of Thieves. An organization created under your leadership, the Guild trains the lowest classes of people to learn the tools of the trade. Trained by your military, your thieves stand ready at your service to do what is needed.</p>
<table class="two-column-stats">
<tbody>
<tr>
<th>Number of thieves</th>
<td>591 (1.136 per acre)</td>
<th>Stealth</th>
<td>100%</td>
</tr>
</tbody>
</table>
<script type="text/javascript">
$(document).ready(function(){
//Auto submit Change Kingdom form on bookmark selection
$(".use-shortcut").click(function () {
$("#id_kingdom").val($(this).attr("kingdom_num"));
$("#id_island").val($(this).attr("island_num"));
$("#change-kingdom-button").click();
});
//Submit add bookmark form on link click
$("#id_add_bookmark_link").click(function () {
// Copy values from change kingdom form
$("#id_add_bookmark_form [name='kingdom_number']").val($("#id_kingdom").val());
$("#id_add_bookmark_form [name='island_number']").val($("#id_island").val());
$("#id_add_bookmark_form [name='next_url']").val($("#id_next_url").val());
$("#id_add_bookmark_form").submit();
});
});
</script>
<form id="id_add_bookmark_form" method="POST" action="/wol/game/bookmarks/add">
<div style='display:none'><input type='hidden' name='csrfmiddlewaretoken' value='ir1b2N7nVh93yrQRqKb67c5zSwG9q27b' /></div>
<input type="hidden" name="kingdom_number" />
<input type="hidden" name="island_number" />
<input type="hidden" name="next_url" />
</form>
<form method="POST" action="/wol/game/change_kingdom/" class="change-kingdom change-kingdom-target" >
<div style='display:none'><input type='hidden' name='csrfmiddlewaretoken' value='ir1b2N7nVh93yrQRqKb67c5zSwG9q27b' /></div>
<div class="change-kingdom-heading">
Target kingdom is Test Kingdom (<a href="/wol/game/kingdom_details/2/2">2:2</a>)
</div>
<div id="royal-commands" style="display: none;">
<table>
<tr id="new-royal-command" style="display: none;">
<th class="kingdom-label">Test Kingdom (<a href="/wol/game/kingdom_details/4/2">4:2</a>)</th>
<td id="new-royal-command-content"></td>
<td></td>
</tr>
</table>
</div>
<input type="hidden" name="next_url" value="/wol/game/thievery" id="id_next_url" />
<div class="change-kingdom-form">
<div id="royal-command-container"></div>
<div id="bookmark-container" title="Bookmarks">
<div id="bookmark-header"></div>
<div id="bookmark-details" class="navigation">
<div><a id="id_add_bookmark_link" href="#add">Add to bookmarks</a></div>
</div>
</div>
<input name="kingdom" value="4" class="two-digit-input" maxlength="2" type="text" id="id_kingdom" /> : <input name="island" value="2" class="two-digit-input" maxlength="2" type="text" id="id_island" />
<input type="submit" value="Go" name="change_kingdom" id="change-kingdom-button" />
<div class="change-kingdom-errors">
</div>
</div>
</form>
<form method="POST" action="">
<div style='display:none'><input type='hidden' name='csrfmiddlewaretoken' value='ir1b2N7nVh93yrQRqKb67c5zSwG9q27b' /></div>
<table>
<tr><th><label for="id_target_province">Select province:</label></th><td><select name="target_province" id="id_target_province">
<option value="" selected="selected">--------------------</option>
<option value="232">A Province Name</option>
<option value="631">Moop</option>
<option value="658">Another Province Name</option>
</select></td></tr>
<tr><th><label for="id_operation">Select operation:</label></th><td><select name="operation" id="id_operation">
<option value="" selected="selected">---------------------------------------</option>
<optgroup label="Espionage">
<option value="INFILTRATE">Infiltrate Thieves' Guild</option>
<option value="SNATCH_NEWS">Snatch News</option>
<option value="SPY_ON_MILITARY">Spy on Military</option>
<option value="SPY_ON_SCIENCES">Spy on Sciences</option>
<option value="SPY_ON_THRONE">Spy on Throne</option>
<option value="SURVEY">Survey</option>
</optgroup>
<optgroup label="Sabotage">
<option value="ARSON">Arson</option>
<option value="BRIBE_GENERALS">Bribe Generals</option>
<option value="BRIBE_THIEVES">Bribe Thieves</option>
<option value="FREE_PRISONERS">Free Prisoners</option>
<option value="INCITE_RIOTS">Incite Riots</option>
<option value="KIDNAP">Kidnap</option>
<option value="ROB_THE_GRANARIES">Rob the Granaries</option>
<option value="ROB_THE_TOWERS">Rob the Towers</option>
<option value="ROB_THE_VAULTS">Rob the Vaults</option>
<option value="STEAL_WAR_HORSES">Steal War Horses</option>
<option value="NIGHT_STRIKE">Night Strike</option>
<option value="SABOTAGE_WIZARDS">Sabotage Wizards</option>
</optgroup>
</select></td></tr>
<tr><th><label for="id_quantity">Number of thieves to send:</label></th><td><input id="id_quantity" type="text" class="five-digit-input" value="60" name="quantity" /></td></tr>
</table>
<input type="submit" value="Run operation" name="do_thief_operation"/>
</form>
<p>Note the following:</p>
<ul>
<li>Assassinate Wizards, Greater Arson and Propaganda are not known to our culture.</li>
</ul>
</div>
</div>
</div>
<div id="right-column">
<div id="skyscraper-ad">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-5229636934656944";
/* Utopia RHS Skyscraper */
google_ad_slot = "9149367805";
google_ad_width = 160;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
</div>
<div style="width: 750px;height: 90px;padding: 5px;clear: both;margin-left: 100px;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-5229636934656944";
/* Utopia Bottom Leaderboard */
google_ad_slot = "7672659925";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<div id="6fd6ff3339" zone_id="6fd6ff3339" class="pagefair-acceptable"></div>
</div>
</div>
<div id="footer">
<div id="version">
Version: 5430
</div>
</div>
</div> <!--Close inner-container -->
</div> <!--Close outer-container -->
<!-- Extra HTML -->
<div class="overlay" id="report-content-dialog">
<h1>Report Content</h1>
<div class="report-dialog-content">
<p>You are about to report that the content below is in breach of the <a href="http://wiki.utopia-game.com/index.php?title=Game_Rules#Language_.26_Attitude">Code of Conduct</a>. This is a serious allegation, which may result in disciplinary action against the player that uploaded it.</p><p><strong>WARNING: Falsely reporting content is also considered an offense, and may result in your account being suspended, or worse.</strong></p>
<div class="reported-content"></div>
<input class="button-link" type="submit" value="Report this content"></input>
</div>
<div class="spinner"></div>
</div>
<div style="display:none" id="report-this-label">Report this</div>
<div style="display:none" id="report-this-url">/shared/feedback/report_content/</div>
<div id="recruitment-chat">
</div>
</body>
</html>