Files
Bidule/CELEMANITheo/index.html
T
Théo CELEMANI 3d9a64cc32 Modif CSS
2024-10-22 14:50:06 +04:00

57 lines
2.5 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<!-- bootstrap cdn css -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
</head>
<body>
<div class="container">
<h1 style="font-family: 'Roboto Condensed', sans-serif; font-size: 30px; font-weight: 600;">CENTRE DE FORMATION INFORMATIQUE À LA RÉUNION DEPUIS 2002!</h1>
</div>
<div class="container" style="background-color: #009de0;">
<br>
<div class="row">
<div class="col-3">
<img src="logo.png" class="img-fluid">
</div>
<div class="col-9">
<P style="font-family: 'Roboto Condensed', sans-serif; color: white;">Formulaire de connexion</P>
<form>
<div class="mb-3">
<label for="" class="form-label" style="color: #ffffff;">Email</label>
<input
type="email"
class="form-control"
name=""
id=""
aria-describedby="emailHelpId"
placeholder="exemple@gmail.com"
/>
</div>
<div class="mb-3">
<label for="" class="form-label" style="color: #ffffff;">Mot de passe</label>
<input
type="password"
class="form-control"
name=""
id=""
placeholder="Mot de passe"
/>
</div>
<button class="btn btn-secondary">Se connecter</button>
</form>
<br>
<a href="liste.html">Accès annonyme à la liste CDA</a>
<br>
</div>
</div>
</div>
<!-- jQuery cdn script -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js"></script>
<!-- bootstrap cdn script -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>