-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutmedibay.php
92 lines (80 loc) · 3.16 KB
/
aboutmedibay.php
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>about medibay</title>
<meta name="author" content="Adtile">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="css/styled.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="shortcut icon" href="img/favicon1.png" type="image/x-icon" />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<link rel="stylesheet" href="css/ie.css">
<![endif]-->
<script src="js/responsive-nav.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#myInput").on("keyup", function() {
var value = $(this).val().toLowerCase();
$("#myTable tr").filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
});
</script>
<style>
body{
display: inline-block;
margin-top: 15px;
}
</style>
</head>
<body>
<?php include "header.php"; ?>
<br />
<a id="back2Top" title="Back to top" href="#">➤</a>
                                                     
<center><h2><u><font color="red">Medi</font><font color="cyan">Bay</font></u></h2></center>
<p>Medibay Is a Patients Medical Records Management System Developed by the genesys team, this project is developed for helping the peoples</p>
<p>In this Project any patient can register and upload/update his/her medical records and access them anywhere when they require their medical data.</P>
<p>Patient Medical Record Management System can be used by all peoples and institutions especially medical institutions to maintain the medical data of their patients and keep safe. Achieving this objective is difficult using paperwork system or any institutes personal data management system as the information is scattered, can be redundant and collecting relevant information may be very time costing, all these problems are solved using this project.</p>
<?php include "footer.php"; ?>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<script>
/*Scroll to top when arrow up clicked BEGIN*/
$(window).scroll(function() {
var height = $(window).scrollTop();
if (height > 100) {
$('#back2Top').fadeIn();
} else {
$('#back2Top').fadeOut();
}
});
$(document).ready(function() {
$("#back2Top").click(function(event) {
event.preventDefault();
$("html, body").animate({ scrollTop: 0 }, "slow");
return false;
});
});
/*Scroll to top when arrow up clicked END*/
</script>
<script type="text/javascript">
myHilitor.remove();
</script>
<script src="js/fastclick.js"></script>
<script src="js/scroll.js"></script>
<script src="js/fixed-responsive-nav.js"></script>
</body>
</html>