max-7seg-clock/data/index.html

25 lines
797 B
HTML

<!DOCTYPE html> <html>
<head><meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>TooManySevenSegmentsClock</title>
<style>html { font-family: Helvetica; display: inline-block; margin: 0px auto; text-align: center;}
body{margin-top: 50px;} h1 {color: #444444;margin: 50px auto 30px;}
p {font-size: 24px;color: #444444;margin-bottom: 10px;}
</style>
</head>
<body>
<div id="webpage">
<h1>TooManySevenSegmentsClock</h1>
<p>Time:
</p>
<form action="/set_time" method="post">
<input type="number" min="0" max="23" id="hours" value="%HOURS%" name="hours"><br><br>
<input type="number" min="0" max="59" id="minutes" value="%MINUTES%" name="minutes"><br><br>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>