37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!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="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()">
 | 
						|
			<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>
 |