| 
									
										
										
										
											2020-06-20 20:03:06 +02:00
										 |  |  | <!DOCTYPE html> | 
					
						
							|  |  |  | <html lang="en"> | 
					
						
							|  |  |  | <head> | 
					
						
							|  |  |  |     <meta charset="UTF-8"> | 
					
						
							| 
									
										
										
										
											2020-12-01 03:08:31 -05:00
										 |  |  |     <link rel="preconnect" href="https://fonts.gstatic.com"> | 
					
						
							| 
									
										
										
										
											2020-12-02 23:05:37 -05:00
										 |  |  |     <link href="https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600&display=swap" rel="stylesheet"> | 
					
						
							| 
									
										
										
										
											2021-05-13 00:41:49 +02:00
										 |  |  |     <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> | 
					
						
							| 
									
										
										
										
											2020-07-18 16:25:07 -04:00
										 |  |  |     {% block head %} | 
					
						
							| 
									
										
										
										
											2020-12-02 23:48:10 -05:00
										 |  |  |         <title>MultiWorld</title> | 
					
						
							| 
									
										
										
										
											2020-06-20 20:03:06 +02:00
										 |  |  |     {% endblock %} | 
					
						
							|  |  |  | </head> | 
					
						
							|  |  |  | <body> | 
					
						
							| 
									
										
										
										
											2020-07-04 23:50:18 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | {% with messages = get_flashed_messages() %} | 
					
						
							|  |  |  |     {% if messages %} | 
					
						
							| 
									
										
										
										
											2020-07-18 16:25:07 -04:00
										 |  |  |         <div> | 
					
						
							| 
									
										
										
										
											2020-07-04 23:50:18 +02:00
										 |  |  |             {% for message in messages %} | 
					
						
							| 
									
										
										
										
											2020-12-03 01:55:06 -05:00
										 |  |  |                 <div class="user-message">{{ message }}</div> | 
					
						
							| 
									
										
										
										
											2020-07-04 23:50:18 +02:00
										 |  |  |             {% endfor %} | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  | {% endwith %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-18 16:25:07 -04:00
										 |  |  | {% block body %} | 
					
						
							|  |  |  | {% endblock %} | 
					
						
							| 
									
										
										
										
											2020-07-04 23:50:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-18 16:25:07 -04:00
										 |  |  | </body> | 
					
						
							|  |  |  | </html> |