-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooked.html
36 lines (34 loc) · 1.14 KB
/
booked.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
<!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 type="text/javascript" >
$(document).ready(function()
{
alert("Booked Successfully");
window.location.pathname = "http://lit-journey-1188.herokuapp.com/search_doc.html";
});
</script>
</head>
<body>
<label for="pat_name">Name</label>
<input type ="text" name="pat_name" id="pat_name" value=""/><br>
</body>
</html>