waschmarken/admin.html
2020-07-18 00:54:19 +02:00

73 lines
1.4 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Waschmarken.io</title>
<meta name="description" content="Waschmarken Scoreboard">
<link rel="stylesheet" href="../../static/css/normalize.css">
<link rel="stylesheet" href="../../static/css/sakura-dark.css">
<style>
.heading {
text-align: center;
}
#scoreboard .score {
text-align: right;
}
#scoreboard .bar {
height: 1.2em;
border-radius: 0.6em;
}
.number {
width: 8rem;
}
.plusbutton {
width: 3rem;
}
</style>
</head>
<body>
<h1 class="heading">Waschmarken Admin Interface</h1>
<table id="scoreboard">
<thead>
<tr>
<th class="score">Name</th>
<th class="score">Score</th>
<th class="score">Max</th>
<th class="score">Increase</th>
</tr>
</thead>
<tbody></tbody>
<template>
<tr class="row">
<td class="score" id="name"></td>
<td class="score" id="cur"></td>
<td class="score" id="max"></td>
<td class="score" id="incr">
<div>
<input type="number" id="number" value = "25" >
<input type="button" id="plusbutton" value="+">
</div>
</td>
</tr>
</template>
</table>
<script src="../../static/js/admin.js"></script>
</body>
</html>
<!doctype html>
</html>