Sporttafel-old/data/http/index.html

61 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>Sporttafel</title>
<link rel="icon" href="icon.svg">
<script src="index.js"></script>
<link rel="stylesheet" href="index.css">
</head>
<body>
<svg width="800" height="325" id="display" style="background-color: black"></svg>
<table>
<tr>
<td>
<button onclick="get('/action/cancel')" class="cancel">&cross;</button>
</td>
<td>
<button onclick="get('/action/up')">&uarr;</button>
</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>
<button onclick="get('/action/left')">&larr;</button>
</td>
<td>
<button onclick="get('/action/confirm')">&check;</button>
</td>
<td>
<button onclick="get('/action/right')">&rarr;</button>
</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>
<button onclick="get('/action/down')">&darr;</button>
</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>
<button onclick="get('/action/left/up')">&uarr;</button>
</td>
<td>&nbsp;</td>
<td>
<button onclick="get('/action/right/up')">&uarr;</button>
</td>
</tr>
<tr>
<td>
<button onclick="get('/action/left/down')">&darr;</button>
</td>
<td>&nbsp;</td>
<td>
<button onclick="get('/action/right/down')">&darr;</button>
</td>
</tr>
</table>
</body>
</html>