-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
151 lines (151 loc) · 6.15 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
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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="ajout">
<div class="modal">
<div class="nav"><h3>Modal Title</h3></div>
<div class=milieu>
<div><label for=""><h3>Module</h3></label><select name="" id="sel" class="SEL"></select></div>
<div><label for=""><h3>enseignant</h3></label><select name="" id="sel" class="SEL"></select></div>
<div><label for=""><h3>Salle</h3></label><select name="" id="sel" class="SEL"></select></div>
<div><label for=""><h3>Heur de début</h3></label><select name="" id="sel" class="SEL"></select></div>
<div><label for=""><h3>Durée</h3></label><select name="" id="sel" class="SEL"></select></div>
</div>
<div class="btns">
<button class="NB">AJOUTER</button>
<button class="annule">ANNULER</button>
</div>
</div>
</div>
<div class="conteneur">
<div class="gauche">
<input type="text" name="rech" id="RCHE">
<div class="bloc">
<div class="bloc1">
<div class="enseignant BOX">
<div class="boxx">
<span class="fa-sharp fa-solid fa-person-chalkboard icone1"></span>
<span>6</span>
</div>
<div class="boxx">
<span>Enseign.</span>
<span class="fa fa-plus"></span>
</div>
</div>
<div class="salles BOX">
<div class="boxx">
<span class="fa-sharp fa-solid fa-house-user icone2"></span>
<span>6</span>
</div>
<div class="boxx">
<span>Salles</span>
<span class="fa fa-plus"></span>
</div>
</div>
</div>
<div class="bloc2">
<div class="classes BOX">
<div class="boxx">
<span class="fa fa-users icone3"></span>
<span>6</span>
</div>
<div class="boxx">
<span>Classes</span>
<span class="fa fa-plus"></span>
</div>
</div>
<div class="modules BOX">
<div class="boxx">
<span class="fa-solid fa-trash-can icone4"></span>
<span>6</span>
</div>
<div class="boxx">
<span>Modules</span>
<span class="fa fa-plus"></span>
</div>
</div>
</div>
</div>
<select name="slc" id="SELECTION"></select>
</div>
<div class="droite">
<div class="entete">
<div class="entete1">
<div><h1>PLANNING:</h1></div>
<div class="button">
<div class="sousBtn"></div>
</div>
</div>
<div></div>
</div>
<div class="horaire">
<div class="heure">
<span>8H</span>
<span>9H</span>
<span>10H</span>
<span>11H</span>
<span>12H</span>
<span>13H</span>
<span>14H</span>
<span>15H</span>
<span>16H</span>
<span>17H</span>
</div>
</div>
<div class="planning">
<div class="jour1">
<div class="jour11">
<span>LUNDI</span>
<span class="fa fa-plus PLUS"></span>
</div>
<div class="jour12"></div>
</div>
<div class="jour2">
<div class="jour21">
<span>MARDI</span>
<span class="fa fa-plus PLUS"></span>
</div>
<div class="jour22"></div>
</div>
<div class="jour3">
<div class="jour31">
<span>MERCREDI</span>
<span class="fa fa-plus PLUS"></span>
</div>
<div class="jour32"></div>
</div>
<div class="jour4">
<div class="jour41">
<span>JEUDI</span>
<span class="fa fa-plus PLUS"></span>
</div>
<div class="jour42"></div>
</div>
<div class="jour5">
<div class="jour51">
<span>VENDREDI</span>
<span class="fa fa-plus PLUS"></span>
</div>
<div class="jour52"></div>
</div>
<div class="jour6">
<div class="jour61">
<span>SAMEDI</span>
<span class="fa fa-plus PLUS"></span>
</div>
<div class="jour62"></div>
</div>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>