summaryrefslogtreecommitdiff
path: root/dashboard_website/templates/controls.html
blob: be5f65948c59d86f2407fbcb81bfb985bacaefa8 (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
38
39
40
41
42
<!DOCTYPE html>
<html style="height:100%">

<head>
    <title>MMCH Controls</title>
    <link rel="icon" type="image/x-icon" href="/static/img/favicon.ico">

    <script src="{{ url_for('static', filename='js/controls.js') }}"></script>
</head>

<body>
<a href="..">Back</a> <br>
<hr>
<button onclick="downloadCurrent()">Download Current Savefile (.CSV)</button>
<br>
<br>
<form id="dirty" name="dirty">
    <label for="dirtyfile">Choose dirty clue list to upload</label>
    <input id="dirtyfile" name="dirtyfile" type="file" accept=".csv,.CSV"/>
    <button type="button" onclick="loadDirty()">Upload</button>
</form>
<br>
<form id="clean" name="clean">
    <label for="cleanfile">Choose save file to upload (will overwrite)</label>
    <input id="cleanfile" name="cleanfile" type="file" accept=".csv,.CSV"/>
    <button type="button" onclick="loadSave()">Upload</button>
</form>
<br>
<form id="home" name="home">
    <label for="longitude">Longitude</label>
    <input id="longitude" name="longitude" autocomplete="off"/>
    <label for="latitude">Latitude</label>
    <input id="latitude" name="latitude" autocomplete="off"/>
    <button type="button" onclick="setHome()">Set Home Location</button>
</form>
<br>
<form id="routes" name="routes">
    <button type="button" onclick="generateRoutes()">Generate Routes</button>
</form>
</body>

</html>