-
Notifications
You must be signed in to change notification settings - Fork 0
/
categoriesList.html
42 lines (34 loc) · 1.28 KB
/
categoriesList.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./internet/jquery.mobile-1.3.2.min.css">
<script src="./internet/jquery-1.8.3.min.js"></script>
<script src="./internet/jquery.mobile-1.3.2.min.js"></script>
<link rel="stylesheet" href="css/styles.css" />
<script src="js/categoriesList.js"></script>
</head>
<body>
<div data-role="page" id="categoriesList">
<div data-role="header" id="header" class="header">
<h1><span class="titleTXT">Home Budget Manager</span></h1>
<a href="#" data-role="button" data-icon="back" data-rel="back" data-theme="c">Go Back</a><!-- -->
<div data-role="navbar" id="navBarGoUP" data-iconpos="left">
<ul>
<li><a href="main.html" data-icon="home">Home</a></li>
<li><a href="categoryAdd.html" data-icon="plus" data-transition="slide" rel="external" >Add Category</a></li>
</ul>
</div>
</div>
<div data-role="content">
<div> <!--id="wrapper"-->
<div id="noCategories" align="left"><br><h3>List of Categories</h3><hr><br>There are no records about categories!<br><br><hr></div>
<ul data-role="listview" id="categoriesListUL" data-inset="false">
</ul>
</div>
</div>
<div data-role="footer" class="footer">
<h1><span class="titleTXT">List of Categories</span></h1>
</div>
</div>
</body>
</html>