You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
3.6 KiB
66 lines
3.6 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
<meta name="description" content="" />
|
|
<meta name="author" content="" />
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<link href="/css/{% block css %}base_theme{% endblock %}.css" rel="stylesheet" />
|
|
<script src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script>
|
|
</head>
|
|
<body class="bg-primary">
|
|
<div id="layoutAuthentication">
|
|
<div id="layoutAuthentication_content">
|
|
<main>
|
|
{% block main %}
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-5">
|
|
<div class="card shadow-lg border-0 rounded-lg mt-5">
|
|
<div class="card-header"><h3 class="text-center font-weight-light my-4">Connexion</h3></div>
|
|
<div class="card-body">
|
|
<form>
|
|
<div class="form-floating mb-3">
|
|
<input class="form-control" id="inputEmail" type="email" placeholder="nom@exemple.com" />
|
|
<label for="inputEmail">Adresse eMail</label>
|
|
</div>
|
|
<div class="form-floating mb-3">
|
|
<input class="form-control" id="inputPassword" type="password" placeholder="Mot de passe" />
|
|
<label for="inputPassword">Mot de passe</label>
|
|
</div>
|
|
<div class="form-check mb-3">
|
|
<input class="form-check-input" id="inputRememberPassword" type="checkbox" value="" />
|
|
<label class="form-check-label" for="inputRememberPassword">Mémoriser le mot de passe</label>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
</main>
|
|
</div>
|
|
<div id="layoutAuthentication_footer">
|
|
<footer class="py-4 bg-light mt-auto">
|
|
<div class="container-fluid px-4">
|
|
<div class="d-flex align-items-center justify-content-between small">
|
|
<div class="text-muted">Copyright © HeartTrack 2023</div>
|
|
<div>
|
|
<a href="#">Politique de confidentialité</a>
|
|
·
|
|
<a href="#">Termes & Conditions d'utilisations</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
|
|
<script src="js/scripts.js"></script>
|
|
</body>
|
|
</html> |