add_collector.html
mirhasan
html
a year ago
631 B
4
Indexable
<!DOCTYPE html>
<html>
<head>
<title>Add Collector</title>
</head>
<body>
<h1>Add Collector</h1>
<form method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<br>
<label for="truck_id">Truck:</label>
<select id="truck_id" name="truck_id">
{% for truck in trucks %}
<option value="{{ truck[0] }}">{{ truck[0] }}</option> <!-- Truck Plate gösterimi -->
{% endfor %}
</select>
<br>
<button type="submit">Add Collector</button>
</form>
</body>
</html>
Editor is loading...
Leave a Comment