-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjet.js
364 lines (313 loc) · 9.8 KB
/
Projet.js
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
/*Ouverture et fermeture des différentes fenêtre popup*/
/*Bouton connectez-vous et sa fenêtre popup*/
function openForm() {
document.getElementById("popupForm").style.display = "block";
}
function closeForm() {
document.getElementById("popupForm").style.display = "none";
}
function valideForm() {
document.getElementById("popupForm").style.display = "none";
}
/*Bouton et fenêtre popup des épisodes pour les séries, ouverture et fermeture*/
function EpBBad() {
document.getElementById("S1Ep1BBad").style.display = "block";
}
function CloseEpB() {
document.getElementById("S1Ep1BBad").style.display = "none";
}
function EpGOT() {
document.getElementById("S1Ep1GOT").style.display = "block";
}
function CloseEpG() {
document.getElementById("S1Ep1GOT").style.display = "none";
}
function EpFriends() {
document.getElementById("S1Ep1Friends").style.display = "block";
}
function CloseEpF() {
document.getElementById("S1Ep1Friends").style.display = "none";
}
function EpPB() {
document.getElementById("S1Ep1PB").style.display = "block";
}
function CloseEpPB() {
document.getElementById("S1Ep1PB").style.display = "none";
}
function EpSopra() {
document.getElementById("S1Ep1Sopra").style.display = "block";
}
function CloseEpS() {
document.getElementById("S1Ep1Sopra").style.display = "none";
}
function EpBDL() {
document.getElementById("S1Ep1BDL").style.display = "block";
}
function CloseEpBDL() {
document.getElementById("S1Ep1BDL").style.display = "none";
}
function EpV() {
document.getElementById("S1Ep1V").style.display = "block";
}
function CloseEpV() {
document.getElementById("S1Ep1V").style.display = "none";
}
function EpPkB() {
document.getElementById("S1Ep1PkB").style.display = "block";
}
function CloseEpPkB() {
document.getElementById("S1Ep1PkB").style.display = "none";
}
/*Vérification du remplissage pour l'inscription*/
function validerInsc() {
var nom = document.getElementById("nom").value
prenom = document.getElementById("prenom").value
mail = document.getElementById("mail").value
ville = document.getElementById("ville").value
pseudo = document.getElementById("pseudo").value
mdp = document.getElementById("mdp").value
mdpc = document.getElementById("cmdp").value
if (nom === '') {
window.alert('Veuillez entrer votre nom !');
} else if (prenom === '') {
alert('Veuillez entrer votre prénom !');
} else if (mail === '') {
alert('Veuillez entrer votre adresse Email !');
} else if (ville === '') {
alert('Veuillez indiquer votre adresse !');
} else if (pseudo === '') {
alert('Veuillez indiquer un pseudo !');
} else if (mdp === '') {
alert('Veuillez saisir un mot de passe !');
} else if (cmdp === '') {
alert('Veuillez confirmer votre mot de passe !');
} else {
window.location.href = 'Netflux_fr.html';
}
}
/*Envoi d'un email à une adresse précise, fonction qui ne fonctionne pas comme on le voudrait car nous n'avons pas encore programmer l'adresse main de réception*/
function contact() {
var dialog = document.getElementById("dialog").value
if (dialog === '') {
window.alert("Nous n'avons pas la nature de votre requête !");
} else {
alert('Bien reçu !');
}
}
// Ajouter un i pour faire joindre le style +i et le select(i), sélection des différents bouton de l'inscription//
function select() {
id = document.getElementById("style");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select1() {
id = document.getElementById("style1");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select2() {
id = document.getElementById("style2");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select3() {
id = document.getElementById("style3");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select4() {
id = document.getElementById("style4");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select5() {
id = document.getElementById("style5");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select6() {
id = document.getElementById("style6");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select7() {
id = document.getElementById("style7");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select8() {
id = document.getElementById("style8");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select9() {
id = document.getElementById("style9");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select10() {
id = document.getElementById("style10");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select11() {
id = document.getElementById("style11");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select12() {
id = document.getElementById("style12");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select13() {
id = document.getElementById("style13");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select14() {
id = document.getElementById("style14");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select15() {
id = document.getElementById("style15");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select16() {
id = document.getElementById("style16");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function select17() {
id = document.getElementById("style17");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function selectA() {
id = document.getElementById("styleA");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function selectB() {
id = document.getElementById("styleB");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function selectC() {
id = document.getElementById("styleC");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function selectD() {
id = document.getElementById("styleD");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function selectE() {
id = document.getElementById("styleE");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function selectF() {
id = document.getElementById("styleF");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function selectG() {
id = document.getElementById("styleG");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function selectH() {
id = document.getElementById("styleH");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};
function selectI() {
id = document.getElementById("styleI");
if (id.style.backgroundColor == "black") {
id.style.backgroundColor = "transparent";
} else {
id.style.backgroundColor = "black";
}
};