do-tracker/app/templates/move_do.html

36 lines
928 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Mark DO Movement</title>
</head>
<body>
<h1>Mark Arrival/Departure</h1>
<form method="POST">
<label>DO Number or Delivery Number:</label><br>
<input type="text" name="do_search" required><br>
<label>Your Name (who handled it):</label><br>
<input type="text" name="handled_by" required><br>
<label>Comment (optional):</label><br>
<input type="text" name="comment"><br>
<label>
<input type="checkbox" name="departed">
Mark as Departed
</label><br><br>
<button type="submit">Submit</button>
</form>
<p><a href="/store">Back to Dashboard</a></p>
{% with messages = get_flashed_messages(with_categories=true) %}
{% for category, message in messages %}
<p style="color:red;">{{ message }}</p>
{% endfor %}
{% endwith %}
</body>
</html>