-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.php
47 lines (34 loc) · 1.19 KB
/
index.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
<!DOCTYPE html>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<html>
<head>
<title>Disease Prediction System </title>
<link rel="stylesheet" href="css/bootstrap.min.css" media="screen" >
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/login.css">
<style>
button{
cursor:pointer;
}
</style>
</head>
<body>
<?php
include "login.php";
?>
<section class="container content">
<div class="hompage">
<h2>What concerns you about your health today ?</h2>
<p>Check your symptoms and find out what could be
causing them ,It's fast ,free and anonymous.
</p>
<ul>
<li><button class="homepage-button"onclick="document.getElementById('id01').style.display='block'" style="width:auto;"><a>Login as Admin</a></button></li>
<li> <button class="homepage-button"><a href="intro.php">Start Checkups</a></button></li>
</ul>
</div>
</section>
</body>
</html>