-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlistAddStudent.html
More file actions
executable file
·159 lines (132 loc) · 6.65 KB
/
listAddStudent.html
File metadata and controls
executable file
·159 lines (132 loc) · 6.65 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/dashboard.css">
<link rel="stylesheet" href="css/listAddStudent.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="fontawesome/css/all.css">
<title>Ajouter un nouvel étudiant</title>
</head>
<body>
<div class="container">
<div class="naviguation">
<div class="boiteAdmin">
<div class="photoAdmin"></div>
<p>ADMIN</p>
</div>
<ul class="navul">
<li>
<a href="dashboard.html">
<span class="icone"><i class="fa fa-home" aria-hidden="true"></i></span>
<span class="titre">Accueil</span>
</a>
</li>
<li class="dropdown">
<a href="#">
<span class="icone"><i class="fa fa-users" aria-hidden="true"></i></span>
<span class="titre">Espace Etudiants</span>
</a>
<ul class="sousMenu">
<li>
<a href="liste.html">
<span class="icone"><i class="fa fa-list-ul" aria-hidden="true"></i></span>
<span class="titre">Liste</span>
</a>
</li>
<li>
<a href="resultat.html">
<span class="icone"><i class="fa fa-check-double" aria-hidden="true"></i></span>
<span class="titre">Résultats</span>
</a>
</li>
</ul>
</li>
<li>
<a href="parametres.html">
<span class="icone"><i class="fa fa-cogs" aria-hidden="true"></i></span>
<span class="titre">Paramètres</span>
</a>
</li>
<li>
<a href="index.html">
<span class="icone"><i class="fa fa-sign-out-alt" aria-hidden="true"></i></span>
<span class="titre">Déconnexion</span>
</a>
</li>
</ul>
</div>
<div class="main">
<div class="topbar">
<div class="toggle" onclick="toggleMenu()"><i class="fa fa-bars"></i></div>
<div class="search">
<label for="search">
<input type="search" name="search" id="search" placeholder="faire une recherche...">
<i class="fa fa-search" aria-hidden="true"></i>
</label>
</div>
</div>
<div class="contenus">
<form name="form" id="myForm" >
<div class="formInput">
<a href="liste.html" class="fermer"><span class="fa fa-times"></span></a>
<h3>Formulaire d'enregistrement</h3>
<div>
<label for="nom">Nom</label>
<input type="text" name="nom" id="nom" minlength="2" pattern="[A-Za-z ]*" title="Le nom doit contenir que des lettres, eviter les accents">
</div>
<div>
<label for="prenom">Prenom</label>
<input type="text" name="prenom" id="prenom" minlength="2" pattern="[A-Za-z ]*" title="Le prénom doit contenir que des lettres, eviter les accents">
</div>
<div>
<label for="date">Date de naissance</label>
<input type="date" name="date" id="date" >
</div>
<div>
<label for="email">Email</label>
<input type="email" name="email" id="email" >
</div>
<div>
<label for="contacts">Contact</label>
<input type="text" name="contacts" id="contacts" minlength="8" pattern="[0-9]+">
</div>
<div>
<label for="contactsParent">Contact des parents</label>
<input type="text" name="contactsParent" id="contactsParent" minlength="8" pattern="[0-9]+">
</div>
<div>
<label for="specialite">Spécialité</label>
<select name="specialite" id="specialite">
<option value="aucun">-- spécialité --</option>
<option value="flutter">FLUTTER</option>
<option value="frontEnd">FRONT-END</option>
<option value="javaScript">JAVASCRIPT</option>
<option value="marketing">MARKETING DIGITAL</option>
<option value="php">PHP</option>
<option value="python">PYTHON</option>
</select>
</div>
<div>
<label for="scolarite">Montant versé</label>
<input type="text" name="scolarite" id="scolarite" minlength="5" pattern="[0-9]+">
</div>
<div class="photoInput">
<input type="file" name="addPhoto" id="addPhoto" value="Ajouter photo" accept="image/jpg,image/jpeg">
<a >Ajouter une photo</a>
</div>
</div>
<p id="error"></p>
<input type="submit" value="Enregistrer" class="submit">
</form>
<div class="box">
</div>
</div>
</div>
</div>
</body>
<script src="script/toggle.js"></script>
<script src="script/listAddStudent.js"></script>
</html>