forked from Th3-822/rapidleech
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuploadui.php
More file actions
39 lines (38 loc) · 1.02 KB
/
Copy pathuploadui.php
File metadata and controls
39 lines (38 loc) · 1.02 KB
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
<br />
<table align="center" cellspacing="0" cellpadding="0" class="uploadui" id="progressblock">
<tr>
<td></td>
<td>
<div class="progressouter">
<div style="width:298px">
<div id="progress" class="progressup"></div>
</div>
</div>
</td>
<td></td>
</tr>
<tr>
<td align="left" id="received">0 KB</td>
<td align="center" id="percent">0%</td>
<td align="right" id="speed">0 KB/s</td>
</tr>
</table>
<br />
<script type="text/javascript">
/* <![CDATA[ */
function pr(percent, received, speed)
{
document.getElementById('received').innerHTML = '<b>' + received + '</b>';
document.getElementById('percent').innerHTML = '<b>' + percent + '%</b>';
document.getElementById('progress').style.width = percent + '%';
document.getElementById('speed').innerHTML = '<b>' + speed + ' KB/s</b>';
document.title = percent + '% Uploaded';
return true;
}
function mail(str, field)
{
document.getElementById('mailPart.' + field).innerHTML = str;
return true;
}
/* ]]> */
</script><br />