-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
33 lines (31 loc) · 964 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Gestion d'un cabinet médical</title>
<link rel="shortcut icon" href="Donnees/patientele_icon.ico" />
<link rel="stylesheet" href="CSS/base.css">
<link rel="stylesheet" href="CSS/index.css">
</head>
<body>
<div class="container" id="container">
<div class="form-container log-in-container">
<form action="./PHP/menu.php" method="post">
<h1>Authentification</h1>
<input name="identifiant" type="text" placeholder="Identifiant" />
<input name="mot_de_passe" type="password" placeholder="Mot de passe" />
<p>Entrez n'importe quel identifiant et mot de passe</p>
<button>Se connecter</button>
</form>
</div>
<div class="overlay-container">
<div class="overlay">
<div class="overlay-panel overlay-right">
<h1>Gestion d'un cabinet médical</h1>
<img src="Donnees/doctor.png" alt="docteur">
</div>
</div>
</div>
</div>
</body>
</html>