Merge branch 'main' of https://github.com/farad77/Bidule
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
||||||
</head>
|
</head>
|
||||||
<body style="background-image: url('https://expernet-campus.re/wp-content/uploads/2021/12/entree-expernet-campus-informatique-1024x576.png');" class="text-white">
|
<body style="background-image: url('expernet.png');" class="text-white">
|
||||||
<h1><p class="text-center pt-3 pb-5"><i>CDA8 : Expernet 2024-2026</i></p></h1>
|
<h1><p class="text-center pt-3 pb-5"><i>CDA8 : Expernet 2024-2026</i></p></h1>
|
||||||
|
|
||||||
<div class="pl-5">
|
<div class="pl-5">
|
||||||
|
|||||||
@@ -11,9 +11,8 @@
|
|||||||
<body>
|
<body>
|
||||||
<div class="col-md pb-2 d-flex justify-content-center">
|
<div class="col-md pb-2 d-flex justify-content-center">
|
||||||
<form class="d-flex flex-column rounded p-5 card">
|
<form class="d-flex flex-column rounded p-5 card">
|
||||||
<img src="https://expernet.re/wp-content/themes/tm-bootstrap/images/logo.png" alt="expernet" class=" pb-4 img-fluid">
|
<img src="logo.png" alt="logo_expernet" class="img-fluid mx-auto pb-5">
|
||||||
|
<!-- Email input -->
|
||||||
<!-- Email input -->
|
|
||||||
<div data-mdb-input-init class="form-outline mb-4">
|
<div data-mdb-input-init class="form-outline mb-4">
|
||||||
<label class="form-label" for="form2Example1">Adresse mail :</label>
|
<label class="form-label" for="form2Example1">Adresse mail :</label>
|
||||||
<input type="email" id="form2Example1" class="form-control" />
|
<input type="email" id="form2Example1" class="form-control" />
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 8.0 KiB |
@@ -0,0 +1,51 @@
|
|||||||
|
<!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>
|
||||||
|
<script
|
||||||
|
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
|
||||||
|
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
|
||||||
|
crossorigin="anonymous"
|
||||||
|
></script>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,125 @@
|
|||||||
|
<!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"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
|
||||||
|
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
referrerpolicy="no-referrer"
|
||||||
|
/>
|
||||||
|
<title>EXPERTNET | CDA8 EXO1</title>
|
||||||
|
</head>
|
||||||
|
<header class="w-100 bg-light">
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<img
|
||||||
|
src="https://expernet.re/wp-content/themes/tm-bootstrap/images/logo.png"
|
||||||
|
alt="expernet logo"
|
||||||
|
/>
|
||||||
|
<h3 class="font-weight-bold">
|
||||||
|
CENTRE DE FORMATION INFORMATIQUE À LA RÉUNION DEPUIS 2002 !
|
||||||
|
</h3>
|
||||||
|
<button type="button" class="btn btn-warning">
|
||||||
|
<i class="fa-solid fa-calculator"></i>Demande de devis
|
||||||
|
</button>
|
||||||
|
<button type="button" class="btn btn-warning">
|
||||||
|
<i class="fa-solid fa-graduation-cap"></i>Découvrez notre
|
||||||
|
école
|
||||||
|
</button>
|
||||||
|
<a href="index.html">
|
||||||
|
<button type="button" class="btn btn-danger">
|
||||||
|
<i class="fa-solid fa-door-open"></i>Déconnexion
|
||||||
|
</button>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<body class="container-fluid bg-dark">
|
||||||
|
<h1 class="text-center text-white">Liste des élèves de CDA 8</h1>
|
||||||
|
<table class="table rounded p-5">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Nom</th>
|
||||||
|
<th>Prénom</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<th>AHOVEY</th>
|
||||||
|
<th>SaintGeorge</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>AHYONG</th>
|
||||||
|
<th>Emjy</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Barret</th>
|
||||||
|
<th>Toma</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>CELEMANI</th>
|
||||||
|
<th>Theo</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>RAMASSY</th>
|
||||||
|
<th>Cheun</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Demontis</th>
|
||||||
|
<th>Matisse</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Grondin</th>
|
||||||
|
<th>Clarel</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Jeremy</th>
|
||||||
|
<th>Hoarau</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Munier</th>
|
||||||
|
<th>Jerome</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Pedre</th>
|
||||||
|
<th>Gabriel</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>M</th>
|
||||||
|
<th>Sebastien</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Noel</th>
|
||||||
|
<th>Thomy</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Boyer</th>
|
||||||
|
<th>Dorian</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>DUCAUROY</th>
|
||||||
|
<th>Lou</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Hoarau</th>
|
||||||
|
<th>Julien</th>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</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>
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="fr">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<!-- <link rel="stylesheet" href="styles.css" /> Utilisation de Bootstrap -->
|
||||||
|
|
||||||
|
<!-- 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>Expernet | CDA8 HJ</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md">
|
||||||
|
<h1 class="title">Hello World!</h1>
|
||||||
|
<p>Welcome in my world 😊</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md">
|
||||||
|
<p>
|
||||||
|
I'm 3thernity a friendly developper let's be friends !
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md">
|
||||||
|
<p>Alright let's have some fun 😝</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md">
|
||||||
|
<p>
|
||||||
|
Je suis un passionner d'informatique, de jeux video et
|
||||||
|
j'aime également chanter de tant à autres eheh
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</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>
|
||||||
|
|
||||||
|
<!-- CDN BOOTSTRAP -->
|
||||||
|
<script
|
||||||
|
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
|
||||||
|
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
|
||||||
|
crossorigin="anonymous"
|
||||||
|
></script>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
|
||||||
|
sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
color: whitesmoke;
|
||||||
|
background-color: black;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user