Ludovic HTML

This commit is contained in:
Rassaby Ludovic
2024-10-22 14:39:16 +04:00
parent 211b23b070
commit 32287cc75e
4 changed files with 144 additions and 0 deletions
@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Liste des Utilisateurs</title>
</head>
<body>
<h2>Liste des etudients de cda8</h2>
<table border="1" cellpadding="10" cellspacing="0">
<tr>
<th>Nom d'utilisateur</th>
<th>Email</th>
</tr>
<tr>
<td>cestLeMatin</td>
<td>@example.com</td>
</tr>
<tr>
<td>Cheun.md</td>
<td>@example.com</td>
</tr>
<tr>
<td>despacito</td>
<td>@example.com</td>
</tr>
<tr>
<td>Dorian</td>
<td>@example.com</td>
</tr>
<tr>
<td>Gabriel</td>
<td>@example.com</td>
</tr>
<tr>
<td>Jeremy</td>
<td>@example.com</td>
</tr>
<tr>
<td>Jerome</td>
<td>@example.com</td>
</tr>
<tr>
<td>Lou</td>
<td>@example.com</td>
</tr>
<tr>
<td>sgg</td>
<td>@example.com</td>
</tr>
<tr>
<td>Theo</td>
<td>@example.com</td>
</tr>
<tr>
<td>Thomy</td>
<td>@example.com</td>
</tr>
<tr>
<td>Toma</td>
<td>@example.com</td>
</tr>
<tr>
<td>Ludovic</td>
<td>@example.com</td>
</tr>
</table>
<!-- Bouton pour revenir à la page index.html -->
<br>
<button onclick="window.location.href='index.html'">Revenir à la page de connexion</button>
</body>
</html>
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=2.0">
<title>Connexion</title>
<!-- Lien vers le CSS de Bootstrap -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container h-100 d-flex justify-content-center align-items-center">
<div class="row">
<div class="col-md-8 offset-md-3">
<!-- Ajout de l'image au-dessus du formulaire -->
<div class="text-center mb-4">
<img src="https://expernet.re/wp-content/themes/tm-bootstrap/images/logo.png" alt="Logo" class="img-fluid" style="max-width: 150px;">
</div>
<h2 class="text-center mb-4">Formulaire de Connexion</h2>
<form action="liste.html" method="POST">
<div class="form-group">
<label for="username">Email :</label>
<input type="text" id="username" name="username" class="form-control" required>
</div>
<div class="form-group">
<label for="password">Mot de passe :</label>
<input type="password" id="password" name="password" class="form-control" required>
</div>
<button type="submit" class="btn btn-primary btn-block">Se connecter</button>
</form>
<p class="text-center mt-3">
Pour vous connecter anonymement, suivez le
<a href="liste.html" class="link-opacity-100">lien suivant</a>
</p>
</div>
</div>
</div>
<!-- Lien vers le JS de Bootstrap et de jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>