-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_started.php
More file actions
51 lines (47 loc) · 1.79 KB
/
get_started.php
File metadata and controls
51 lines (47 loc) · 1.79 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>MedTech Solution</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Tab logo -->
<link href="assets/img/tab_logo.png" rel="icon">
<!-- main js -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="javascript/main.js"></script>
<!-- Template Main CSS File -->
<link href="stylesheet/styleme.css" rel="stylesheet" type="text/css" media="screen, projection"/>
<!-- google fonts -->
<link href='https://fonts.googleapis.com/css?family=Sofia' rel='stylesheet'>
<!-- icons -->
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<!-- javascript pie chart -->
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
</head>
<body>
<!-- this is a navbar for before login -->
<header class='nav'>
<a href="index.php" class="logo">MedTech Solution</a>
<ul>
<li ><a > </a></li>
<li ><a > </a></li>
<li ><a > </a></li>
<li class='myButton' ><a href="index.php">Home</a></li>
<li class='myButton'><a href="Health_Passport/health_passport_login.php">Health Passport</a></li>
</ul>
</header>
<section class="home">
<div class="flex-parent">
<!-- i m doctor -->
<div class="boxone">
<img src="assets/img/doc.png" alt="Doctor" width="400" height="400">
<p style="text-align: center;" class='myButton' ><a href="doctor/doctor_login.php">I'm Doctor</a></p>
</div>
<!-- i m Patient -->
<div class="boxone">
<img src="assets/img/pat.png" alt="Patient" width="400" height="400">
<p style="text-align: center;" class='myButton' ><a href="patient/patient_login.php">I'm Patient</a></p>
</div>
</div>
</section>
</body>
</html>