ftracker/web/view.html

37 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2020-12-02 22:37:01 +01:00
<!DOCTYPE html>
<html>
<head>
<title>FTracker Data</title>
<meta charset="utf-8">
2020-12-02 22:37:01 +01:00
<meta name="theme-color" content="#c50e1f">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="view.css" rel="stylesheet" type="text/css">
2020-12-02 22:37:01 +01:00
</head>
<body>
<header>
Start: <input type="datetime-local" id="start" value="2020-12-01T00:00" onchange="renderData()">
Ende: <input type="datetime-local" id="end" onchange="renderData()">
Raum: <input type="text" id="room" placeholder=".* (regex)" onchange="renderData()">
<input type="button" value="Log Out" style="float:right" onclick="localStorage.removeItem('dataauth'); location.reload()">
2021-01-13 13:38:31 +01:00
<input type="button" value="Export CSV" style="float:right; margin-right: 8px;" onclick="exportCSV()">
2020-12-02 22:37:01 +01:00
</header>
<main>
<div class="row viewheader" id="nameheader">
<span><b>Names</b></span>
</div><!--
--><div class="row viewheader" id="timeheader">
<div id="timelabels" style="padding-right: 256px;"></div>
</div>
<section class="names">
<div id="names" style="padding-bottom: 256px;"></div>
</section><!--
--><section class="times">
<div class="scroll">
<div id="times"></div>
</div>
</section>
2020-12-02 22:37:01 +01:00
</main>
<script src="view.js"></script>
2020-12-02 22:37:01 +01:00
</body>
</html>