-
Notifications
You must be signed in to change notification settings - Fork 1
/
List.htm
69 lines (66 loc) · 2.47 KB
/
List.htm
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
<!doctype html>
<html>
<head>
<title>Flash(Forge|Air)</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="copyright" content="(c) 2013, Fixstars Corporation. All rights reserved.">
<meta name="author" content="Junichi Kitano">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="/SD_WLAN/css/bstrap.css" rel="stylesheet" media="screen">
<link href="/SD_WLAN/css/bstrapr.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-target=".nav-collapse" data-toggle="collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="/">Flash(Forge|Air)</a>
<div class="nav-collapse collapse">
<ul class="nav pull-right">
<li class="active"><a href="/"><i class="icon-home"></i>Home</a></li>
<li><a href="https://github.com/rubinlinux/flashforgeair">About</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<div class="files">
<table id="list" class="table table-hover table-striped table-condensed">
</table>
</div>
</div>
<script type="text/javascript" src="/SD_WLAN/js/jquery.js"></script>
<script type="text/javascript" src="/SD_WLAN/js/datefrmt.js"></script>
<script type="text/javascript" src="/SD_WLAN/js/main.js"></script>
<script type="text/javascript" src="/SD_WLAN/js/bstrap.js"></script>
<!-- See https://flashair-developers.com/en/documents/api/utility/ to understand what is going on here -->
<script type="text/javascript">
wlansd = new Array();
<!--WLANSDJLST-->
</script>
<div class="container">
<h4>Upload</h4>
<div>
<!--
<input type="file" id='file' name='file'>
</div>
<div>
<button id="cmdUpload">Upload</button>
-->
<form action="/upload.cgi" method="post" enctype="multipart/form-data">
<input name="file" id="file" type=file ><br>
<input type="submit" value="submit" ></form>
</div>
</div>
</body>
</html>