mirror of
https://github.com/jooray/rss2podcast.git
synced 2025-05-23 07:52:00 +00:00
34 lines
1.3 KiB
HTML
34 lines
1.3 KiB
HTML
<!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>Register</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">Register</button>
|
|
</form>
|
|
{% 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>
|