Move script to head tag

This commit is contained in:
nxshock 2024-07-10 11:15:35 +05:00
parent 48e439da10
commit e7a7baa0a0

View File

@ -7,42 +7,7 @@
<title>File Storage</title>
<link rel="stylesheet" href="/style.css">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
</head>
<body>
<header>
<span>
<img src="/favicon.svg">
File Storage
</span>
<label>
<input id="file-uploader" type="file">
Загрузить файл
</label>
</header>
<main>
<table>
<col width="*">
<col width="0">
<col width="0">
<tr>
<th>Имя файла</th>
<th>Размер</th>
<th>Дата</th>
</tr>
{{range .Files}} <tr>
<td><img src="/icon?ext={{.Ext}}"> <a href="/download?filename={{.Name}}">{{.Name}}</a> <a class="right" href="/stream?filename={{.Name}}">просмотр</a></td>
<td><pre>{{.Size}}</pre></td>
<td>{{.Date}}</td>
</tr>
{{end}} </table>
</main>
<footer>
Файлы хранятся как минимум {{.StorageDuration}} ч.
</footer>
</body>
</html>
<script type="text/javascript">
function myProgressHandler(event) {
var p = Math.floor(event.loaded / event.total * 100);
@ -69,3 +34,42 @@ document.getElementById("file-uploader").addEventListener('change', (e) => {
ajax.send(formData);
});
</script>
</head>
<body>
<header>
<span>
<img src="/favicon.svg">
File Storage
</span>
<label>
<input id="file-uploader" type="file">
Загрузить файл
</label>
</header>
<main>
<table>
<col width="*">
<col width="0">
<col width="0">
<tr>
<th>Имя файла</th>
<th>Размер</th>
<th>Дата</th>
</tr>
{{range .Files}} <tr>
<td><img src="/icon?ext={{.Ext}}"> <a href="/download?filename={{.Name}}">{{.Name}}</a> <a class="right" href="/stream?filename={{.Name}}">просмотр</a></td>
<td>
<pre>{{.Size}}</pre>
</td>
<td>{{.Date}}</td>
</tr>
{{end}}
</table>
</main>
<footer>
Файлы хранятся как минимум {{.StorageDuration}} ч.
</footer>
</body>
</html>