-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathhideplayer.xhtml
39 lines (37 loc) · 1.64 KB
/
hideplayer.xhtml
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
{% extends "basepage.xhtml" %}
{% block html_title %}Hide Player{% endblock %}
{% block head_css %}
.sbar { padding:20px 0 20px 0; margin:0; text-align:center;}
.searchquery { font-size:13px; margin-right:10px; padding: 4px 3px; vertical-align:middle; width:190px;}
a.gpbutton { display:inline; margin: 0 auto; line-height:33px; font-size:13.5px; font-weight:bold; color:#fff; text-shadow:0px -1px 1px #666; padding:5px 8px; background:#818189; text-decoration: none; -webkit-border-radius:5px; -moz-border-radius:5px; white-space:nowrap; }
.vmiddle { vertical-align:middle;}
.message_p {text-align:center;font-size:14px;font-weight:bold;}
{% endblock %}
{% block page_content %}
<h1 class="pageTitle">HIDE PLAYER</h1>
<div style="height:20px;"></div>
<p class="message_p">Hide or show a player from the leaderboard. Enter player name:</p>
<form id="myform" class="sbar" method="POST">
<div>
<input id="myinput" class="searchquery" name="u" maxlength="2048" autocorrect="off" autocapitalize="off" type="text" value="" />
<br />
<div style="height:10px;"></div>
<div class="message_p">
<input type="radio" name="choice" value="hide" /> Hide
<input type="radio" name="choice" value="show" /> Show
</div>
<div style="height:10px;"></div>
<p class="message_p">Reason:</p>
<input id="myinput2" class="searchquery" name="r" maxlength="2048" autocapitalize="off" type="text" value="" />
<div style="height:10px;"></div>
<input type="submit">Submit</input>
</div>
<br />
</form>
<script>
function submit(a) {
document.getElementById(a).submit();
}
document.getElementById('myinput').focus();
</script>
{% endblock %}