37 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="fr">
 | |
|     <head>
 | |
|         <meta charset="UTF-8">
 | |
|         <title>Truth Inquiry - Connexion à l'interface d'administration</title>
 | |
|         <link rel="stylesheet" href="/static/css/admin_ui.css">
 | |
|         <link rel="stylesheet" href="/static/css/admin_ui_login.css">
 | |
|         <link rel="icon" href="/static/images/favicon/favicon_32.png" type="image/png" sizes="32x32">
 | |
|         <link rel="icon" href="/static/images/favicon/favicon_64.png" type="image/png" sizes="64x64">
 | |
|         <link rel="icon" href="/static/images/favicon/favicon_96.png" type="image/png" sizes="96x96">
 | |
|         <link rel="icon" href="/static/images/favicon/favicon_128.png" type="image/png" sizes="128x128">
 | |
|         <link rel="icon" href="/static/images/favicon/favicon_192.png" type="image/png" sizes="192x192">
 | |
|         <link rel="icon" href="/static/images/favicon/favicon_256.png" type="image/png" sizes="256x256">
 | |
|         <link rel="icon" href="/static/images/favicon/favicon_256.png" type="image/png" sizes="512x512">
 | |
|         <meta name="color-scheme" content="dark light">
 | |
|         <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|     </head>
 | |
|     <body>
 | |
|         <h1 class="login_title">Truth Inquiry - Connexion à l'interface d'administration</h1>
 | |
|         <form action="/api/v1/admin/auth" method="POST">
 | |
|             <div class="password_field">
 | |
|                 <label for="password" class="password_label">Mot de passe :</label>
 | |
|                 <input id="password" name="password" type="password" placeholder="Mot de passe" required="required" title="Saisissez votre mot de passe">
 | |
|             </div>
 | |
|             <button id="login_input_button" class="action_button short_color_transition" type="submit" title="Cliquez ici pour vous connecter à l'interface d'administration de Truth Inquiry">
 | |
|                 <svg class="action_icon short_color_transition" xmlns="http://www.w3.org/2000/svg" viewBox="0 96 960 960">
 | |
|                     <path d="M483 959v-91h298V284H483v-92h298q36.125 0 63.562 27.206Q872 246.412 872 284v584q0 37.175-27.438 64.088Q817.125 959 781 959H483Zm-90-177-66-63 96-97H89v-91h332l-96-97 66-64 207 207-205 205Z"/>
 | |
|                 </svg>
 | |
|                 Connexion
 | |
|             </button>
 | |
|         </form>
 | |
|         {% if failed %}
 | |
|         <p class="invalid_password">Mot de passe invalide !</p>
 | |
|         {% endif %}
 | |
|     </body>
 | |
| </html>
 |