Files
olaper/templates/register.html
2025-07-26 04:41:47 +03:00

31 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ _('Register') }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> <!-- Link to your CSS -->
</head>
<body>
<div class="auth-container">
<div class="lang-switcher-auth">
<a href="{{ url_for('.set_language', language='ru') }}">Русский</a> |
<a href="{{ url_for('.set_language', language='en') }}">English</a>
</div>
<h1>{{ _('Register') }}</h1>
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
<div class="flash-message flash-{{ category }}">{{ message }}</div>
{% endfor %}
{% endif %}
{% endwith %}
<form method="post">
<label for="username">{{ _('Username:') }}</label>
<input type="text" id="username" name="username" required><br>
<label for="password">{{ _('Password:') }}</label>
<input type="password" id="password" name="password" required><br>
<button type="submit">{{ _('Register') }}</button>
</form>
<p>{{ _("Already have an account?") }} <a href="{{ url_for('.login') }}">{{ _('Login here') }}</a></p>
</div>
</body>
</html>