-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnewPatientView.php
More file actions
33 lines (30 loc) · 943 Bytes
/
newPatientView.php
File metadata and controls
33 lines (30 loc) · 943 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
<?php
include_once "inc/prelude.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>COJO PROJECT :: Nouvelle residence</title>
<style>
body {
background-image: url(" r/residence.jpg");
} </style>
<?php include "inc/resources.php" ?>
</head>
<body>
<div class="wrapper">
<header>
<h1>COJO PROJECT</h1>
<?php breadcrumb("Nouvelle residence") ?>
</header>
<form action="doNewPatient.php" method="POST">
Nom residence: <input type="text" name="nomResidence"><br />
Capacite residence: <input type="text" name="capaciteResidence"><br />
Adresse Residence: <input type="text" name="adresseResidence"><br />
Telephone residence: <input type="text" name="telephoneResidence"><br />
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>