mirror of
				https://github.com/StefBuwalda/cal_counter.git
				synced 2025-10-30 03:10:00 +00:00 
			
		
		
		
	 88f553a08e
			
		
	
	88f553a08e
	
	
	
		
			
			* Adjusted GUI of daily dashboard to better deal with float values * Change password + New base (#10) * created a new Base template to test with * Changed out the base and added a new password page * Password change works, UI needs redisgn
		
			
				
	
	
		
			30 lines
		
	
	
		
			778 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			778 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en" data-bs-theme="dark">
 | |
| 
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|     <title>{% block title %}My Flask App{% endblock %}</title>
 | |
| 
 | |
|     <!-- Bootstrap 5 CDN -->
 | |
|     <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet">
 | |
| </head>
 | |
| 
 | |
| <body class="bg-body-secondary" style="max-width: calc(100vh*9/16); margin: 0 auto;">
 | |
|     {% include "new_navbar.html" %}
 | |
| 
 | |
|     {% include "flash.html" %}
 | |
| 
 | |
|     {% block content %}
 | |
|     {% endblock %}
 | |
| 
 | |
|     {% block footer %}
 | |
|     {% endblock %}
 | |
| 
 | |
|     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
 | |
| 
 | |
|     {% block scripts %}
 | |
|     {% endblock %}
 | |
| </body>
 | |
| 
 | |
| </html> |