aboutsummaryrefslogtreecommitdiff
path: root/ui/sections/lfv/traffic_lights.html
diff options
context:
space:
mode:
Diffstat (limited to 'ui/sections/lfv/traffic_lights.html')
-rw-r--r--ui/sections/lfv/traffic_lights.html10
1 files changed, 0 insertions, 10 deletions
diff --git a/ui/sections/lfv/traffic_lights.html b/ui/sections/lfv/traffic_lights.html
deleted file mode 100644
index 8fa3eb4..0000000
--- a/ui/sections/lfv/traffic_lights.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<h2>Traffic Lights Control</h2>
-<button onclick="setStatus('Red')">Red</button>
-<button onclick="setStatus('Off')">Off</button>
-<div id="statusDisplay">Status: </div>
-
-<script>
- function setStatus(status) {
- document.getElementById('statusDisplay').innerText = `Status: ${status}`;
- }
-</script>