rss2podcast/templates/login.html

35 lines
1.4 KiB
HTML
Raw Normal View History

2024-11-05 14:45:19 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Loaditfor.me</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="manifest" href="{{ url_for('static', filename='manifest.json') }}">
<link rel="icon" type="image/png" sizes="192x192" href="{{ url_for('static', filename='icons/icon-192x192.png') }}">
<meta name="theme-color" content="#268bd2">
</head>
<body>
<div class="container">
<h1>Login</h1>
<form method="post">
<label>Username:</label>
<input type="text" name="username" required>
<label>Password:</label>
<input type="password" name="password" required>
<button type="submit">Login</button>
</form>
<p>Don't have an account? <a href="{{ url_for('register') }}">Register here</a>.</p>
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
<img class="title-image" src="https://pls.loaditfor.me/static/title_image.jpeg" alt="Title Image">
</div>
</body>
</html>