-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
45 lines (44 loc) · 2.04 KB
/
header.php
File metadata and controls
45 lines (44 loc) · 2.04 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/datepicker.css" rel="stylesheet" />
<link href="css/customnav.css" rel="stylesheet" />
<link href="css/custom.css" rel="stylesheet" />
<link href="//cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.6.1/fullcalendar.min.css" rel="stylesheet" />
<link href="//cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.6.1/fullcalendar.print.css" rel="stylesheet" media="print"/>
</head>
<body ng-app="communityCareHubApp" ng-controller="communityCareHubController">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand">Community Care Hub</a>
</div>
<ul class="nav navbar-nav">
<li id="caregiverHomeLink"><a href="caregiverHome.php">Caregiver Home</a></li>
<li id="patientProfileLink"><a href="patientProfile.php">Patient Profile</a></li>
<li id="lovedOnePortalLink"><a href="lovedOnePortal.php">Loved One Portal</a></li>
</ul>
<ul class="nav navbar-nav navbar-help">
<div class="help-tip" id="helpLink">
<p id="helpText">
Community Care Hub is a web app to help caregivers, doctors, and loved ones stay up to date with elderly individual's care.
<br /><br />
Try logging in as a Caregiver or a Loved One!
<br /><br />
Username: Caregiver<br />
Password: abc123
<br /><br />
Username: Loved One<br />
Password: abc123
</p>
</div>
</ul>
<ul class="nav navbar-nav navbar-right">
<li id="logoutButton"><a href="/">Logout</a></li>
</ul>
</div>
</nav>
<div id="content">