-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnewOfficielView.php
More file actions
30 lines (27 loc) · 887 Bytes
/
newOfficielView.php
File metadata and controls
30 lines (27 loc) · 887 Bytes
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
<?php
include_once "inc/prelude.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>COJO OLYMPIC GAMES PROJECT :: Officiels </title>
<?php include "inc/resources.php" ?>
</head>
<body>
<div class="wrapper">
<header>
<h1>COJO OLYMPIC GAMES PROJECT</h1>
<?php breadcrumb("Ajouter un officiel") ?>
</header>
<form action="doNewOfficiel.php" method="POST">
Prenom: <input type="text" name="pprenom"><br />
Nom: <input type="text" name="pnomDeFamille"><br />
Adresse Permanante: <input type="text" name="pAdressePermanente"><br />
Adresse Village: <input type="text" name="pAdresseVillage"><br />
Type: <input type="text" name="otype"><br />
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>