33 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <link rel="preconnect" href="https://fonts.gstatic.com">
 | 
						|
    <link href="https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600&display=swap" rel="stylesheet">
 | 
						|
    <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/tooltip.css") }}" />
 | 
						|
    <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/cookieNotice.css") }}" />
 | 
						|
    <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/globalStyles.css") }}" />
 | 
						|
    <script type="application/ecmascript" src="{{ url_for('static', filename="assets/styleController.js") }}"></script>
 | 
						|
    <script type="application/ecmascript" src="{{ url_for('static', filename="assets/cookieNotice.js") }}"></script>
 | 
						|
    {% block head %}
 | 
						|
        <title>MultiWorld</title>
 | 
						|
    {% endblock %}
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
 | 
						|
{% with messages = get_flashed_messages() %}
 | 
						|
    {% if messages %}
 | 
						|
        <div>
 | 
						|
            {% for message in messages %}
 | 
						|
                <div class="user-message">{{ message }}</div>
 | 
						|
            {% endfor %}
 | 
						|
        </div>
 | 
						|
    {% endif %}
 | 
						|
{% endwith %}
 | 
						|
 | 
						|
{% block body %}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
</body>
 | 
						|
</html>
 |