54 lines
2.3 KiB
HTML
54 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
|
<title>Connexion</title>
|
|
<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">
|
|
|
|
</head>
|
|
<body>
|
|
<div class="col-md pb-2 d-flex justify-content-center">
|
|
<form class="d-flex flex-column rounded p-5 card">
|
|
<img src="logo.png" alt="logo_expernet" class="img-fluid mx-auto pb-5">
|
|
<!-- Email input -->
|
|
<div data-mdb-input-init class="form-outline mb-4">
|
|
<label class="form-label" for="form2Example1">Adresse mail :</label>
|
|
<input type="email" id="form2Example1" class="form-control" />
|
|
</div>
|
|
|
|
<!-- Password input -->
|
|
<div data-mdb-input-init class="form-outline mb-4">
|
|
<label class="form-label" for="form2Example2">Mot de passe :</label>
|
|
<input type="password" id="form2Example2" class="form-control" />
|
|
</div>
|
|
|
|
<!-- 2 column grid layout for inline styling -->
|
|
<div class="row mb-4">
|
|
<div class="col d-flex justify-content-center">
|
|
<!-- Checkbox -->
|
|
<div class="form-check">
|
|
<label class="form-check-label" for="form2Example31"> Se souvenir de moi </label>
|
|
<input class="form-check-input" type="checkbox" value="" id="form2Example31" checked />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col">
|
|
<!-- Simple link -->
|
|
<a href="#!">Mot de passe oublié</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Submit button -->
|
|
<button type="button" data-mdb-button-init data-mdb-ripple-init class="btn btn-primary btn-block mb-4">Se connecter</button>
|
|
|
|
<!-- Register buttons -->
|
|
<div class="text-center">
|
|
<p>Pas inscrit ? <a href="#!">S'inscrire</a></p>
|
|
<p>ou se connecter en anonyme avec :</p>
|
|
<a href="C:\Users\lenovo\Documents\RemoteRepository\ExternalWorkspace\Bidule\GRONDINClarel\index.html" class="">Anonyme</a>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |