add_collector.html

 avatar
mirhasan
html
a month ago
631 B
1
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>
Leave a Comment