-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhome.html
More file actions
115 lines (100 loc) · 5.95 KB
/
home.html
File metadata and controls
115 lines (100 loc) · 5.95 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="EMRWait App">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>EMRWait App</title>
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable " content="yes ">
<link rel="icon " sizes="192x192 " href="images/android-desktop.png ">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable " content="yes ">
<meta name="apple-mobile-web-app-status-bar-style " content="black ">
<meta name="apple-mobile-web-app-title " content="WealthConnect ">
<link rel="apple-touch-icon-precomposed " href="images/ios-desktop.png ">
<!-- Tile icon for Win8 (144x144 + tile color) -->
<meta name="msapplication-TileImage " content="images/touch/ms-touch-icon-144x144-precomposed.png ">
<meta name="msapplication-TileColor " content="#3372DF ">
<link rel="shortcut icon " href="images/favicon.png ">
<!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones -->
<!--
<link rel="canonical " href="http://www.example.com/ ">
-->
<link href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en " rel="stylesheet ">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons " rel="stylesheet ">
<link rel="stylesheet " href="css/material.min.css ">
<link rel="stylesheet " href="css/styles.css ">
<style>
#view-source {
position: fixed;
display: block;
right: 0;
bottom: 0;
margin-right: 40px;
margin-bottom: 40px;
z-index: 900;
}
</style>
<script src="https://cdn.firebase.com/js/client/2.3.2/firebase.js"></script>
<script type="text/javascript" src="//static.twilio.com/libs/twiliojs/1.2/twilio.min.js"></script>
<script src="js/logout.js"></script>
</head>
<body>
<div class="demo-layout mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header ">
<header class="demo-header mdl-layout__header mdl-color--grey-100 mdl-color-text--grey-600 ">
<div class="mdl-layout__header-row ">
<span class="mdl-layout-title">Waiting Screen</span>
</div>
</header>
<div class="demo-drawer mdl-layout__drawer mdl-color--blue-grey-900 mdl-color-text--blue-grey-50 ">
<header class="demo-drawer-header ">
<img src="images/user.png " class="demo-avatar ">
<div class="demo-avatar-dropdown ">
<span id="userId" class="center ">USER ID</span>
</div>
</header>
<nav class="demo-navigation mdl-navigation mdl-color--blue-grey-800 ">
<a class="mdl-navigation__link " href="home.html"><i class="mdl-color-text--blue-grey-400 material-icons " role="presentation ">home</i>Home</a>
<a class="mdl-navigation__link " href="hospitalList.html"><i class="mdl-color-text--blue-grey-400 material-icons " role="presentation ">whatshot</i>Hospitals</a>
<a class="mdl-navigation__link " href="trends.html"><i class="mdl-color-text--blue-grey-400 material-icons " role="presentation ">person</i>My Profile</a>
<a class="mdl-navigation__link " href="" onclick="logout()"><i class="mdl-color-text--blue-grey-400 material-icons " role="presentation ">exit_to_app</i>Logout</a>
<div class="mdl-layout-spacer "></div>
</nav>
</div>
<main class="mdl-layout__content mdl-color--grey-800">
<div class="centeralign buttonholder">
<button id="openReminderBtn" class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored fullwidthbutton marginspace">Set a Reminder</button>
<div id="reminderDiv" class="mdl-card mdl-shadow--6dp center space">
<form action="php/sendMessage.php">
<div class="mdl-textfield mdl-js-textfield smallerdiv">
<input class="mdl-textfield__input" type="text" pattern="-?[0-9]*(\.[0-9]+)?" id="patPhone">
<label class="mdl-textfield__label center" for="sample2">Enter your Phone #</label>
<span class="mdl-textfield__error">Input is not a number!</span>
</div>
<h4 class="little">Reminder will be sent 10 minutes before turn</h4>
<input id="setReminderBtn" type="submit" value="Remind Me" class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored fullwidthbutton marginspace">
</form>
</div>
<button id="leaveLineBtn" class="mdl-button mdl-js-button mdl-button--raised mdl-button--accent mdl-red fullwidthbutton marginspace">Leave Line</button>
</div>
<div class="mdl-card mdl-shadow--6dp center space">
<h3 class="bigtext">Your Place in Line</h3>
<h4 id="linenum" class="medtext ">line number</h4>
</div>
<div class="mdl-card mdl-shadow--6dp center space">
<h3 class="bigtext">Estimated Wait Time</h3>
<h4 id="waittime" class="medtext">wait time</h4>
</div>
<div class="mdl-card mdl-shadow--6dp center">
<div class="map" id="map"></div>
</div>
</main>
</div>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDiaUhZOZ8AaR7dbXpbJRlfCzUFO8ZVSlw&"></script>
<script src="js/material.min.js "></script>
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/queue.js"></script>
</body>
</html>