-
Notifications
You must be signed in to change notification settings - Fork 0
/
manager.html
105 lines (102 loc) · 4.15 KB
/
manager.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<html>
<header>
<link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width,initial-scale = 1.0">
<link href="styles.css" type="text/css" rel="stylesheet">
<link href="mainStyle.css" type="text/css" rel="stylesheet">
<link rel="shortcut icon" type="docs/x-icon" href="docs/image/budget-icon.ico">
</header>
<title>
Expense Manager
</title>
<body class="main-page">
<div class="header">
<h1 class="header-title">Manage your Expense 💰 </h1>
<h3 class="header-subtitle">--Chaoyu Xiang</h3>
</div>
<script src="userInfo.js"></script>
<div class="menu">
<a class="login-page" href="index.html">Login Page</a>
<p id="user" style="display:inline"></p>
<script>loadUser()</script>
<a class="record-history" href="#" onclick="renderExpense()">Record History</a>
</div>
<div class="new-record left">
<input class='record-name' type="text" placeholder="add new Expanse here! ">
<div class="name-mon">
<input class='record-money' type="text" placeholder="add $ here ">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$(function () {
$("#datepicker").datepicker();
});
</script>
<p class="date">Date: <input type="text" id="datepicker" class="record-date"></p>
</div>
<div class="cate">
<p>What was that for?</p>
<div class="record-cate">
<input type="checkbox" id="grocery">
<label for="grocery"></label>
</div>
<div class="record-cate">
<input type="checkbox" id="snack">
<label for="snack"></label>
</div>
<div class="record-cate">
<input type="checkbox" id="cloth">
<label for="cloth"></label>
</div>
<div class="record-cate">
<input type="checkbox" id="rent">
<label for="rent"></label>
</div>
</div>
<div class="submit">
<button class="post-submit">Submit</button>
</div>
<h4>Or upload your receipts and recognize text by us!</h4>
<input type="file" id="uploadPic" onchange="previewFile()"><br>
<div class="photo-area">
<div class="pic">
<script src="photoProcesser.js"></script>
</div>
<div id="photoText"></div>
</div>
</div>
<div class="right">
<div class="result-title"></div>
<div class="records"></div>
</div>
<footer class="site-footer" role="contentinfo">
<div class="about-me">
<h3>-About me💁🏻♂️-</h3>
<ul>
<li>
<a href="https://github.com/ChaoyuXiang" target="_blank">
<img src="docs/image/github.png" alt="github Logo" class="gh-icon">
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/chaoyuxiang/" target="_blank">
<img src="docs/image/linkedin.png" alt="linkedin Logo" class="l-icon"></a>
</li>
<li>
<a href="https://www.facebook.com/chaoyuX" target="_blank">
<img src="docs/image/facebook.png" alt="fb Logo" class="fb-icon"></a>
</li>
<li>
<a href="https://www.instagram.com/chaoyu_xiang/" target="_blank">
<img src="docs/image/ins.png" alt="ins Logo" class="ins-icon"></a>
</li>
</ul>
</div>
</footer>
<script src="uuidGen.js"></script>
<script src="itemList.js"></script>
</body>
</html>