forked from LucasDelvallet/MaquetteGL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplanifierSecretaireForm.html
More file actions
71 lines (64 loc) · 1.92 KB
/
planifierSecretaireForm.html
File metadata and controls
71 lines (64 loc) · 1.92 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
<!DOCTYPE html>
<html>
<head>
<title>Club A</title>
<link rel="stylesheet" type="text/css" href="Style.css">
</head>
<body>
<div id="Titre">
<h1>Bienvenue sur le Club A !</h1>
</div>
<div id="connexion">
<a href="connexion.html">Se déconnecter</a>
<a href="monCompte.html">Mon compte</a>
</div>
<div id="divMenu">
<ul id="menu">
<li><a href="accueil.html">Accueil</a></li>
<li><a href="news.html">News</a></li>
<li><a href="seances.html">Calendrier</a></li>
<li><a href="planifierMembre.html">Planifier une séance (membre)</a></li>
<li><a href="planifierSecretaire.html">Planifier une séance (secrétaire)</a></li>
<li><a href="validerSeanceAnimateur.html">Valider une séance (animateur)</a></li>
<li><a href="organiserEvenement.html">Organiser un évènement</a></li>
<li><a href="streaming.html">Streaming</a></li>
<li><a href="archive.html">Archives</a></li>
<li><a href="bai.html">Boite à idées</a></li>
<li><a href="scores.html">Scores/Classements</a></li>
<li><a href="dons.html">Dons</a></li>
<li><a href="sponsor.html">Devenez Sponsor !</a></li>
</ul>
</div>
<div id="main">
<br/>
Choisir deux animateurs
<select>
<option>Jessie</option>
<option>James</option>
<option>Clovis</option>
<option>Igor</option>
</select>
<select>
<option>Clovis</option>
<option>Jessie</option>
<option>James</option>
<option>Igor</option>
</select>
<br/>
Nombre de participants <INPUT type="text" name="nom" value="" size="2"> à <INPUT type="text" name="nom" value="" size="2">
<br/>
Choisir une salle
<select>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
<br/>
Pathologies compatibles <INPUT type="text" name="nom" value="" size="30">
<br/>
<br/>
<button onclick="self.location.href='planifierSecretaire.html'">Créer la séance</button>
</div>
</body>
</html>