This repository has been archived on 2025-05-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
pi-race-timer/app/templates/countdown.html
2025-04-29 23:36:37 +02:00

18 lines
515 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Countdown</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
</head>
<body class="countdown">
<div class="ampel-overlay">
<div class="licht rot" id="licht1"></div>
<div class="licht rot" id="licht2"></div>
<div class="licht rot" id="licht3"></div>
</div>
<script>
startCountdown();
</script>
</body>
</html>