webui-aria2/index.html

70 lines
1.7 KiB
HTML
Raw Normal View History

<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="js/libs/modernizr-2.5.3.min.js"></script>
<script src="js/libs/jquery-1.7.2.js"></script>
<script src="js/libs/bootstrap.js"></script>
</head>
<body class="hero-unit">
<h1>ARIA2 Webclient</h1>
<div role="main">
<p id="console"></p>
<h2>Pending Downloads</h2>
<table id="d_table" class="table table-bordered">
<tr>
<th>Name</th>
<th>Progress</th>
<th>Size</th>
<th>Download Speed</th>
</tr>
</table>
</div>
<footer>
intital footer!!
</footer>
<!-- Hidden dialogs and out of screen HTML elements -->
<div class="modal fade" id="error_connect">
<div class="modal-header">
<button class="close" data-dismiss="modal">x</button>
<h3>Connection to Aria failed :( </h3>
</div>
<div class="modal-body">
<p>
Make sure that aria2c is running and rpc is enabled.
aria2c --enable-rpc
</p>
</div>
<div class="modal-footer">
<a href="#" class="btn">Retry</a>
<a href="#" class="btn btn-primary">Use custom IP and port settings</a>
</div>
</div>
<script src="js/plugins.js"></script>
<script src="js/script.js"></script>
</body>
</html>