-
Notifications
You must be signed in to change notification settings - Fork 0
/
createvent.php
70 lines (58 loc) · 1.96 KB
/
createvent.php
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
<?php
include("bdd/createvent_bdd.php");
?><!DOCTYPE html>
<html>
<head>
<?php
include("raccourcis/link_header.php");
?>
<title>Créer un évènement</title>
</head>
<body>
<?php
include("raccourcis/header.php");
?>
<div class="affichage">
<div class="content">
<div class="formulaire">
<form method="POST" action="" class="login active">
<br/>
<h1>Création évènement</h1>
<div>
<label for="nom_ev">Nom de l'évènement :</label>
<input type="text" placeholder="Le nom" id="nom_ev" name="nom_ev" value="<?php if(isset($nom_ev)) { echo $nom_ev; } ?>" />
</div>
<div>
<label for="date_ev">Date de l'évènement :</label>
<input type="datetime-local" placeholder="AAAA-MM-JJ hh:mm:ss" id="date_ev" name="date_ev" value="<?php if(isset($date_ev)) { echo $date_ev; } ?>" />
</div>
<div>
<label for="place_ev">Le nombre de place :</label>
<input type="number" placeholder="Nb place" id="place_ev" name="place_ev" value="<?php if(isset($place_ev)) { echo $place_ev; } ?>" />
</div>
<div>
<label for="prix_ev">Prix pour un membre de l'ASIMOV :</label>
<input type="number" placeholder="Le prix" id="prix_ev" name="prix_ev" value="<?php if(isset($prix_ev)) { echo $prix_ev; } ?>"/>
</div>
<div>
<label for="prix_nm_ev">Prix pour ceux qui ne sont pas membre :</label>
<input type="number" placeholder="Le prix" id="prix_nm_ev" name="prix_nm_ev" value="<?php if(isset($prix_nm_ev)) { echo $prix_nm_ev; } ?>" />
</div>
<div class="bottom">
<input type="submit" name="creerevent" value="Créer mon évènement" />
<a href="" rel="register" class="linkform"></a>
</div>
</form>
<?php
if(isset($erreur)) {
echo '<font color="red">'.$erreur."</font>";
}
?>
</div>
</div>
<?php
include("raccourcis/footer.php");
?>
</div>
</body>
</html>