-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.49 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Bizcatch</title>
<link rel="stylesheet" href="themes/Bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/jquery.mobile.structure-1.4.0.min.css" />
<link rel="stylesheet" href="themes/jquery.mobile.icons.min.css" />
<script type="text/javascript" src="js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.4.0.min.js"></script>
<script type="text/javascript" src="js/jquery.validate.min.js"></script>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="js/db.js"></script>
</head>
<body>
<div data-role="page" data-theme="c">
<div data-role="header" data-position="inline">
<a href="index.html" data-icon="home" data-theme="c"> </a>
<h1>Bizcatch</h1>
<a href="index.html" data-icon="check"> </a>
</div>
<div data-role="content" data-theme="a">
<br /><br />
<a href="product.html" data-ajax="false" data-role="button" data-theme="c" data-icon="check">Product</a><br />
<a href="index.html" data-role="button" data-theme="c" data-icon="check">Sales</a><br />
<a href="report.html" data-role="button" data-theme="c" data-icon="check">Report</a><br />
<a href="index.html" data-role="button" data-theme="c" data-icon="check">Settings</a><br/>
</div>
</div>
</body>
</html>