73 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|     <meta charset="utf-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|     <meta name="description" content="Auth service">
 | |
| 
 | |
|     <!-- No indexing -->
 | |
|     <meta name="robots" content="noindex, nofollow">
 | |
| 
 | |
|     <title>{{ p.app_name }} - {{ p.page_title }}</title>
 | |
| 
 | |
|     <!-- Bootstrap core CSS -->
 | |
|     <link href="/assets/css/bootstrap.css" rel="stylesheet" crossorigin="anonymous"/>
 | |
| 
 | |
|     <!-- Favicons -->
 | |
|     <meta name="theme-color" content="#7952b3">
 | |
| 
 | |
|     <style>
 | |
|         .bd-placeholder-img {
 | |
|             font-size: 1.125rem;
 | |
|             text-anchor: middle;
 | |
|             -webkit-user-select: none;
 | |
|             -moz-user-select: none;
 | |
|             user-select: none;
 | |
|         }
 | |
| 
 | |
|         @media (min-width: 768px) {
 | |
|             .bd-placeholder-img-lg {
 | |
|                 font-size: 3.5rem;
 | |
|             }
 | |
|         }
 | |
|     </style>
 | |
| 
 | |
| 
 | |
|     <!-- Custom styles for this template -->
 | |
|     <link href="/assets/css/base_login_page.css" rel="stylesheet">
 | |
| </head>
 | |
| <body class="text-center">
 | |
| 
 | |
| <!-- Background filter -->
 | |
| <div class="bg-login"></div>
 | |
| 
 | |
| <main class="form-signin">
 | |
| 
 | |
|     <h1 class="h3 mb-3 fw-normal" style="margin-bottom: 2rem !important;">{{ p.page_title }}</h1>
 | |
| 
 | |
|     {% if let Some(danger) = p.danger %}
 | |
|     <div class="alert alert-danger" role="alert">
 | |
|         {{ danger }}
 | |
|     </div>
 | |
|     {% endif %}
 | |
| 
 | |
|     {% if let Some(success) = p.success %}
 | |
|     <div class="alert alert-success" role="alert">
 | |
|         {{ success }}
 | |
|     </div>
 | |
|     {% endif %}
 | |
| 
 | |
|     {% block content %}
 | |
|     TO_REPLACE
 | |
|     {% endblock content %}
 | |
| 
 | |
|     <p class="mt-5 mb-3 text-muted">© Pierre Hubert 2022 -
 | |
|         <script>document.write(new Date().getFullYear())</script>
 | |
|     </p>
 | |
| 
 | |
| </main>
 | |
| 
 | |
| <script src="/assets/js/base_login_page.js"></script>
 | |
| </body>
 | |
| </html>
 |