52 lines
2.1 KiB
HTML
52 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<!-- CDN BOOTSTRAP -->
|
|
<link
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
|
|
crossorigin="anonymous"
|
|
/>
|
|
<title>EXPERTNET | CDA8 EXO1</title>
|
|
</head>
|
|
<body class="bg-dark">
|
|
<div class="position-relative bg-light d-flex align-items-center justify-content-center position-absolute top-50 start-50 translate-middle w-50 rounded p-5 flex-column">
|
|
<img src="https://expernet.re/wp-content/themes/tm-bootstrap/images/logo.png" alt="logo-expernet" class="m-bottom-1">
|
|
<form>
|
|
<h1 class="h3 mb-3 fw-normal">Connexion</h1>
|
|
|
|
<div class="form-floating">
|
|
<input
|
|
type="email"
|
|
class="form-control"
|
|
id="floatingInput"
|
|
placeholder="votremail@example.com"
|
|
/>
|
|
<label for="floatingInput">Email</label>
|
|
</div>
|
|
<div class="form-floating">
|
|
<input
|
|
type="password"
|
|
class="form-control"
|
|
id="floatingPassword"
|
|
placeholder="Votre mot de passe"
|
|
/>
|
|
<label for="floatingPassword">Mot de passe</label>
|
|
</div>
|
|
<button class="btn btn-primary w-100 py-2" type="submit">
|
|
Connexion
|
|
</button>
|
|
<a href="">Ce connecté en anonyme</a>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
<script
|
|
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
|
|
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
</html>
|