Ajout d'une page index.html (form de connexion) et d'une page Liste.html (liste etudiant)
This commit is contained in:
+74
-15
@@ -1,27 +1,86 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<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>Bonjour tout le monde</title>
|
||||
<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>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" style="background-color: grey;">
|
||||
<div class="row">
|
||||
<div class="col-sm" style="background-color: rgb(16, 219, 16);">
|
||||
<span>Case 1</span>
|
||||
</div>
|
||||
<div class="col-sm" style="background-color: white;">
|
||||
<span>Case 2</span>
|
||||
</div>
|
||||
<div class="col-sm" style="background-color: red;">
|
||||
<span>Case 3</span>
|
||||
</div>
|
||||
<nav class="navbar navbar-expand-lg bg-body-tertiary" >
|
||||
|
||||
<div class="container-fluid" style="background-color: #0693e3;">
|
||||
<div class="container">
|
||||
<a class="nav-link" href="#">Notre centre</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="#">Action</a></li>
|
||||
<li><a class="dropdown-item" href="#">Another action</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li><a class="dropdown-item" href="#">Something else here</a></li>
|
||||
</ul>
|
||||
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent" >
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false" aria-current="page" href="#" >Formations</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="#">Action</a></li>
|
||||
<li><a class="dropdown-item" href="#">Another action</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li><a class="dropdown-item" href="#">Something else here</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#" >Planing</a>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link" href="#" role="button">
|
||||
Financement
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" >blog</a>
|
||||
</li>
|
||||
</ul>
|
||||
<form class="d-flex" role="search">
|
||||
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
|
||||
<button class="btn btn-outline-success" type="submit" style="color: black; background-color: #FFC329;">Search</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<h1 class="">Hello</h1>
|
||||
<p>Hello world</p>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Formulaire de connexion -->
|
||||
|
||||
<!-- <div class="position-relative">
|
||||
<div class="position-absolute top-50 start-50 translate-middle"> -->
|
||||
<form>
|
||||
<div class="container" style=" margin-top: 10%;
|
||||
background-color: #0693e3;">
|
||||
<div class="mb-3">
|
||||
<label for="exampleInputEmail1" class="form-label">Email address</label>
|
||||
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="exampleInputPassword1" class="form-label">Password</label>
|
||||
<input type="password" class="form-control" id="exampleInputPassword1">
|
||||
</div>
|
||||
<div class="mb-3 form-check">
|
||||
<input type="checkbox" class="form-check-input" id="exampleCheck1">
|
||||
<label class="form-check-label" for="exampleCheck1">Check me out</label>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary" style="margin-bottom: 1;">Connexion</a></button>
|
||||
<p ><a href="Liste.html" style ="color: white">Se connecter anonymement à la liste des étudiants</a> </p>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
<!-- </div> -->
|
||||
|
||||
<!-- jquery cdn -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js"></script>
|
||||
<!-- boostrap js cdn-->
|
||||
|
||||
Reference in New Issue
Block a user