-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc_home.html
69 lines (63 loc) · 2.31 KB
/
doc_home.html
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
<!doctype html>
<html>
<head>
<title>medical cloud-set</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<style type="text/css">
.c_col{
border-top:1px solid #ccc;
}
.ui-block-a, .ui-block-b, .ui-block-c, .ui-block-d, .ui-block-e{
padding-top:5px;
padding-bottom: 5px;
font-size: 12px;
}
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<script src ="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script>
$(document).ready(function()
{
var uid = GetUrlValue('uid');
$('#view_booking').click(function() { window.location.pathname = ""; });
console.log(redirect);
function GetUrlValue(VarSearch)
{
var SearchString = window.location.search.substring(1);
var VariableArray = SearchString.split('&');
for(var i = 0; i < VariableArray.length; i++)
{
var KeyValuePair = VariableArray[i].split('=');
if(KeyValuePair[0] == VarSearch)
{
return KeyValuePair[1];
}
}
}
});
</script>
</head>
<body>
<div data-role="page" id="one">
<div data-role="header" data-theme="b">
<h1 style="font-size:1.3em;line-height:1.3em;">Home</h1>
</div><!-- /header -->
<div data-role="content">
<div class="c_content_body">
<h4 style="text-align:center">Welcome</h4>
<div id = "button_search">
</div>
<input type="button" value="View Bookings" id="view_booking" data-theme="b" data-icon="check" data-iconpos="right" data-inline="true" >
<input type="button" value="View Messages" id="view_message" data-theme="b" data-icon="check" data-iconpos="right" data-inline="true" >
<input type="button" value="View Rating" id="view_rating" data-theme="b" data-icon="check" data-iconpos="right" data-inline="true" >
</div><!-- /content -->
<br><div data-role="footer" data-theme="b">
<p style="text-align:center">Medical Cloud</p>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>