Files
Bidule/Hoarau-Julien/exo-1/index.html
T
2024-10-22 15:27:26 +04:00

64 lines
2.4 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="liste.html">Ce connecté en anonyme</a>
</form>
</div>
</body>
<!-- CDN JQUERY -->
<script
src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</html>