-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewEvent.php
More file actions
72 lines (47 loc) · 2.03 KB
/
newEvent.php
File metadata and controls
72 lines (47 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<title>new Event</title>
<link rel="stylesheet" type="text/css" href="newEvent.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="ihmSaisie.css">
</head>
<body>
<div class="container-fluid" id="main">
<div id="form">
<form method="post" action="newEventTraitement.php" >
<div class="centre">
<div id="registration">
<h2> Nouvel evenement </h2>
<form action="newCompte.php" method="post">
<fieldset>
<label for="nom">Nom : </label> <input type="text" name="nom" ><br />
<label for="description">Description : </label> <input type="text" name="description" ><br />
<label for="adresse">Adresse : </label> <input type="text" name="adresse" ><br />
<label for="ville">Ville : </label> <input type="text" name="ville" ><br />
<label for="codeP">Code Postale : </label> <input type="text" name="codeP" ><br />
<label for="date">Date : </label> <input type="date" name="date" ><br />
<label for="time">Heure : </label> <input type="time" name="heure" ><br />
<button id="enregistrer" name="enregistrer" type="submit" ">Valider</button>
<button type="reset"> Reset </button>
<button id="enregistrer" name="cancel" type="button" onclick="annuler()">Annuler</button>
</fieldset>
</form>
</div>
</div>
</form>
</div>
</div>
</body>
</html>
<script type="text/javascript">
function annuler(){
document.location.href="http://localhost/scan/compteAdmin.php";
}
</script>