mirror of
https://gitlab.fdmci.hva.nl/technische-informatica-sm3/ti-projectten/rooziinuubii79.git
synced 2025-08-04 04:14:58 +00:00
19 lines
639 B
HTML
19 lines
639 B
HTML
{%extends 'base.html'%} {%block head%} {%endblock%} {%block content%}
|
|
<div class="container">
|
|
<div class="image-section">
|
|
<img src="kobuki.jpg" alt="Kobuki Robot" id="robot-image" />
|
|
</div>
|
|
<div class="button-section">
|
|
<form action="/move" method="post">
|
|
<button class="btn" name="direction" value="left">←</button>
|
|
<button class="btn" name="direction" value="up">↑</button>
|
|
<button class="btn" name="direction" value="right">→</button>
|
|
<button class="btn" name="direction" value="down">↓</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<h1>Sensor Data</h1>
|
|
</div>
|
|
{%endblock%}
|