22 lines
595 B
HTML
22 lines
595 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Store Login</title>
|
|
</head>
|
|
<body>
|
|
<h1>Store Login</h1>
|
|
<form method="POST">
|
|
<label>Store ID:</label><br>
|
|
<input type="text" name="store_id"><br>
|
|
<label>Password:</label><br>
|
|
<input type="password" name="password"><br><br>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% for category, message in messages %}
|
|
<p style="color:red;">{{ message }}</p>
|
|
{% endfor %}
|
|
{% endwith %}
|
|
</body>
|
|
</html>
|