forked from leemacat2/FinalMadApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredithistory.html
69 lines (53 loc) · 1.65 KB
/
credithistory.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
<html>
<head>
<title>Credit History</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/ThisIsIt.css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.1.1.min.js"></script>
<script type= "text/javascript">
$(document).ready(function(){
$("h1").click(function()
{
$.post("http://10.0.2.2/SERVER/cred_hist.php",function(result)
{
$("#result1").html(result);
});
});
$("#logout").click(function()
{
window.location="index.html";
})
$("#dashboard").click(function()
{
window.location="home.html";
})
});
</script>
<link rel="stylesheet" href="css/jquery.mobile.structure-1.1.1.css" />
</head>
<body>
<div data-role="page">
<div data-role="header" data-position="fixed" data-fullscreen="true">
<a href="" data-icon="home" data-iconpos="notext" id="dashboard"/>Home</a>
<h1>MADApp</h1>
<a href="" data-iconpos="notext" data-icon="logout" id="logout">Logout</a>
</div><!--header-->
<br><br><br>
<div data-role="collapsible" id="tab1" data-iconpos="right">
<h1>CREDIT HISTORY</h1>
<ul data-role="listview" id="result1">
</ul>
</div>
<div data-role="footer" data-theme="a" data-position="fixed" data-fullscreen="true" data-id="foo">
<div data-role="navbar" >
<ul>
<li><a data-rel="back" data-icon="back" data-ajax="false">Previous</a></li>
<li><a href="updates.html" data-icon="star" data-ajax="false">Updates</a></li>
<li><a href="profile.html" data-icon="info">Profile</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div>
</body>
</html>