forked from WorldWideSemanticWeb/DigiVetApp_2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneral_information2.php
More file actions
41 lines (27 loc) · 824 Bytes
/
Copy pathgeneral_information2.php
File metadata and controls
41 lines (27 loc) · 824 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
35
36
37
38
39
40
41
<!-- this is the third general information screen-->
<!DOCTYPE html>
<html>
<head>
<title>DigiVet</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div id="animal">
<?php
include 'database.php';
?>
</div>
<div id="information">
<p>Here information should be given about the subject corresponding to the animal.</p>
</div>
<p class="small"> Do you want to go back to the start screen? </p>
<p class="small"> Press blue for yes and yellow for no.</p>
<form action="start.php">
<button type="submit" id="vet_blue"></button>
</form>
<form method="get" action="black.php"> <!-- should be changed to shutdown of the system if possible -->
<button type="submit" id="vet_yellow"></button>
</form>
</body>
</html>