-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (96 loc) · 3.27 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
<title>Sfeir Démo hopitaux</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/main.css" />
<meta name="theme-color" content="#fafafa" />
</head>
<body>
<!-- Cas de <a href="patient.html">création du patient</a>
<br><br>
<a href="soignant.html">Interface du soignant</a>
<br><br>
<a href="bienfaiteur.html">Interface du bienfaiteur</a> -->
<div class="login_page">
<div class="login_page__left"></div>
<div class="login_page__right">
<form class="login_form">
<h1 class="login_form__title">Connexion à l'application</h1>
<p class="login_form__text">
Veuillez saisir vos identifiants afin de pouvoir vous connecter à
l'application
</p>
<div class="login_form__field">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1"
stroke-linecap="round"
stroke-linejoin="round"
class="login_form__field__icon"
>
<path
d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"
></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
<input class="login_form__input" placeholder="Email" />
</div>
<div class="login_form__field">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1"
stroke-linecap="round"
stroke-linejoin="round"
class="login_form__field__icon"
>
<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect>
<path d="M7 11V7a5 5 0 0 1 10 0v4"></path>
</svg>
<input class="login_form__input" placeholder="Password" />
</div>
<input
class="login_form__submit"
type="submit"
value="Se connecter"
/>
<div class="login_form__bottom">
<label>
<input type="checkbox" tabindex="0" value="" />
Se souvenir de moi
</label>
<a href="">Mot de passe oublié ?</a>
</div>
</form>
<div class="login_page__right__link">
<a href="patient.html">création du patient</a>
<a href="soignant.html">Interface du soignant</a>
<a href="bienfaiteur.html">Interface du bienfaiteur</a>
</div>
</div>
</div>
<!-- <br><br><br>
<center>
Connexion à l'application
<br><br>
<table>
<tr><td>Email</td><td><input size="20"></td></tr>
<tr><td>Password</td><td><input size="20"></td></tr>
<tr><td colspan=2><center><input type="submit"></td></tr>
</table>
</center> -->
</body>
</html>