init
This commit is contained in:
36
web/view.html
Normal file
36
web/view.html
Normal file
@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>FTracker Data</title>
|
||||
<meta charset="utf-8">
|
||||
<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">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
Start: <input type="datetime-local" id="start" value="2025-08-30T08:00" onchange="renderData()">
|
||||
Ende: <input type="datetime-local" id="end" onchange="renderData()">
|
||||
Spiel: <input type="text" id="game" placeholder=".* (regex)" onchange="renderData()">
|
||||
<input type="button" value="Log Out" style="float:right" onclick="localStorage.removeItem('dataauth'); location.reload()">
|
||||
<input type="button" value="Export CSV" style="float:right; margin-right: 8px;" onclick="exportCSV()">
|
||||
</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>
|
||||
</main>
|
||||
<script src="view.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user