zkt26/z1/webapp/views/connexion.ejs
2026-03-31 19:33:15 +02:00

72 lines
2.2 KiB
Plaintext

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title>Page d'accueil - Smart Building</title>
<link rel="stylesheet" href="/styleConnexion.css" />
</head>
<body>
<%- include('partials/header') %>
<div id="connexion">
<div class="building"></div>
<div class="cellule">
<div class="page-connexion">
<h1>Connexion</h1>
<form action="/connexion" method="POST">
<div class="form-group">
<span class="icon">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width="24"
height="24"
>
<path
d="M12 12c2.21 0 4-1.79 4-4S14.21 4 12 4 8 5.79 8 8s1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
/>
</svg>
</span>
<input
class="form-control-connexion"
type="text"
id="identifiant"
name="identifiant"
placeholder="Identifiant"
required
/><br /><br />
</div>
<div class="form-group">
<span class="icon">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width="24"
height="24"
>
<path
d="M12 2C8.691 2 6 4.691 6 8v4c-1.104 0-2 .896-2 2v8c0 1.104.896 2 2 2h12c1.104 0 2-.896 2-2v-8c0-1.104-.896-2-2-2V8c0-3.309-2.691-6-6-6zm0 2c2.205 0 4 1.795 4 4v4H8V8c0-2.205 1.795-4 4-4zm-4 10h8v8H8v-8z"
/>
</svg>
</span>
<input
class="form-control-connexion"
type="password"
id="mot_de_passe"
name="mot_de_passe"
placeholder="Mot de passe"
required
/><br /><br />
</div>
<input class="bouton-connexion" type="submit" value="Connexion" />
</form>
</div>
</div>
</div>
<%- include('partials/footer') %>
</body>
</html>