-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiv.php
More file actions
executable file
·32 lines (29 loc) · 940 Bytes
/
div.php
File metadata and controls
executable file
·32 lines (29 loc) · 940 Bytes
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
<style>
#reputation_box{
text-align:center;
color:#FFFFFF;
position:absolute;
border:2px dotted green;
width:600px;
display:none;
background-color:#1f537b;
-moz-border-radius:10px;
}
.reputation{
cursor:pointer;
}
</style>
<div id="reputation_box" style="">
<div id="type"></div>
<p onclick="$('#reputation_box').hide('slow')" style="float:right; cursor:pointer">X</p>
<center>
<form id="frmrepu" action="<?php echo $ext_info['url'].'/reputation.php';?>" method="get" style="padding:20px;" >
<label style="color:white;display:block">কারণ: <br />
<input type="text" name="reason" id="reason" size="50" maxlength="255" /></label><br />
<input type="hidden" name="action" id="action" value="" />
<input type="hidden" name="uid" id="uid" value="" />
<input type="hidden" name="pid" id="pid" value="" />
<br /><input type="submit" id="repusubmit" name="submit" value="<?php echo $lang_common['Submit']?>" />
</form>
</center>
</div>