mirror of
https://github.com/PotentiaRobotics/robot-gui.git
synced 2025-04-18 18:10:17 -04:00
21 lines
757 B
HTML
21 lines
757 B
HTML
<div class="dropdown d3">
|
|
<img
|
|
src="{{url_for('static', filename='images/img-knee.png')}}"
|
|
class="img-part"
|
|
/>
|
|
<p class="measure load3" id="load3">NaN</p>
|
|
<form action='{{ url_for("sendData")}}' class="enter-angle" method="POST">
|
|
<label for="rot">Input</label>
|
|
<input class="inputbox" type="text" id="rot" name="rot" />
|
|
<input type="submit" value="Enter" />
|
|
</form>
|
|
<p class="units">Deg</p>
|
|
<select name="input" id="unit">
|
|
<option value="Position">Position</option>
|
|
<option value="Percent">Percent</option>
|
|
<option value="Velocity">Velocity</option>
|
|
<option value="Voltage">Voltage</option>
|
|
<option value="Force">Force</option>
|
|
</select>
|
|
</div>
|