schnutibox/assets/web/templates/index.html.tmpl

32 lines
1.1 KiB
Cheetah
Raw Normal View History

2021-05-03 14:51:53 +02:00
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>schnutibox</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
2021-05-14 09:48:45 +02:00
<link rel="stylesheet" href="/static/normalize.css">
<link rel="stylesheet" href="/static/milligram.css">
2021-05-03 14:51:53 +02:00
</head>
<body>
<div class="container">
<h1>schnutibox</h1>
2021-08-13 14:44:00 +02:00
<h2>Timer</h2>
Takes only seconds. Example: 600s
<form action="/api/v1/timer" id="timerForm">
<input type="text" name="s" placeholder="600s">
<input type="submit" value="Set">
</form>
2021-05-03 14:51:53 +02:00
<h2>logs</h2>
<pre>
<code>
<div id="log"></div>
</code>
</pre>
</div>
2021-08-13 14:44:00 +02:00
<script src=/static/jquery.js></script>
<script src=/static/schnutibox.js></script>
2021-05-03 14:51:53 +02:00
</body>
</html>