-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnewEmployeeView.php
More file actions
34 lines (31 loc) · 959 Bytes
/
newEmployeeView.php
File metadata and controls
34 lines (31 loc) · 959 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
31
32
33
34
<?php
include_once "inc/prelude.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>COJO :: Nouveau Employé</title>
<style>
body {
background-image: url(" r/employes.jpg");
} </style>
<?php include "inc/resources.php" ?>
</head>
<body>
<div class="wrapper">
<header>
<h1>COJO</h1>
<?php breadcrumb("Nouveau Employé") ?>
</header>
<form action="doNewEmployee.php" method="POST">
Nom: <input type="text" name="pnomDeFamille"><br />
Prénom: <input type="text" name="pprenom"><br />
Adresse permanente: <input type="text" name="pAdressePermanente"><br />
Adresse olympique: <input type="text" name="pAdresseVillage"><br />
Téléphone: <input type="text" name="telephone"><br />
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>