blob: 036e6e1dd4db7e60d6448b1a23ffb2bdf31e2262 (
plain)
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
|
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>"table_task1" table view</title>
<link rel="stylesheet" href="/static/css/ContentBoxStyle.css">
<link rel="stylesheet" href="/static/css/FormStyle.css">
<link rel="stylesheet" href="/static/css/NewEntryStyle.css">
<link rel="stylesheet" href="/static/css/TableStyle.css">
</head>
<body onload="onPageLoad()">
<div id="backgroundTint" class="backgroundTint hidden">
<div id="contentBox" class="contentBox hidden"></div>
</div>
<table id="table"></table>
<button type="button" class="newEntryBtn" id="newEntryBtn"
onclick="showCreateForm()"
onmouseenter="addNewRowOnHover()"
onmouseleave="addNewRowOnEndHover()"
> + </button>
<!-- > <img src="/static/images/upload_icon.png" alt=""> </div>-->
<form enctype="multipart/form-data" action="/api/upload" method="post">
<input type="file" name="filename" accept="text/csv">
<button type="submit">Submit</button>
</form>
<script src="/static/js/main.js"></script>
<script src="/static/js/config.js"></script>
</body>
</html>
|