This repository was archived by the owner on May 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbrowse.php
More file actions
70 lines (63 loc) · 2.3 KB
/
Copy pathbrowse.php
File metadata and controls
70 lines (63 loc) · 2.3 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
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
<!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">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="css/styles.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="../js/colorbox/jquery.colorbox.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".sign_in").colorbox({width:"30%",inline:true, href:"#login_box"});
});
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="js/signin.js" type="text/javascript"></script>
<title>Edutorrent - Bittorrent for Educations</title>
</head>
<body>
<!-- wrapper, adds curve background images -->
<div id="wrapper">
<div class="inner-wrapper">
<div class="header clear">
<!-- START SUBSCRIPTION OPTIONS -->
<div class="subscribe">
<p><a class='sign_in' href="#">Sign In</a></p>
<div style="display:none">
<div id='login_box' style='padding:0px; background:#fff;'>
<form method="post" action="/scripts/login_script.php">
<p align="left"><label>UserName
<input type="text" name="username"/></label></p>
<p align="left"><label>Password
<input type='password' name="password"/></label>
<input type="submit" value=" Sign In "/></p>
</form>
</div>
</div>
</div>
<!-- START HEADER -->
<h1><a href="#">EduTorrent</a></h1>
<h2>Bittorrent for Education.</h2>
<!-- END HEADER -->
</div>
<div class="menu">
<ul class="clear">
<!-- MENU -->
<li class="current"><?php include("htmlphp/menu.php");?>
<!-- END MENU -->
</ul>
</div>
<div class="body clear">
<div class="content_torrents" style="width 100%">
<!-- CONTENT -->
<?php include("htmlphp/makeclass.php");?>
<!-- END CONTENT -->
<!-- FOOTER AND COPYRIGHT -->
<!-- link to spyka.net must remain unless unbranded license brought! -->
<div class="copyright">
<p>© 2009 Edutorrent. <?php include ('htmlphp/footer.php') ?></p>
</div>
</div>
</div>
</div>
</body>
</html>