29 lines
1.3 KiB
HTML
29 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}{{ title }}{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
|
<link rel="icon" href="{{ url_for('static', filename='artberry.ico') }}" type="image/x-icon">
|
|
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1 class="title"><a href="{{url_for('index')}}" style="color:white;">🫐artberry🫐</a></h1>
|
|
<h2 class="{% if title == 'Login' %}login-title{% else %}register-title{% endif %}">{{ title }}</h2>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
<div class="link-container">
|
|
{% if title == 'Register' %}
|
|
<span class="link-text">Already have an account?</span>
|
|
<a href="{{ url_for('auth.login') }}" class="button">Login</a>
|
|
{% elif title == 'Login' %}
|
|
<span class="link-text">Don't have an account?</span>
|
|
<a href="{{ url_for('auth.register') }}" class="button">Register</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |