-
Notifications
You must be signed in to change notification settings - Fork 0
/
expenseapp.html
166 lines (162 loc) · 6.77 KB
/
expenseapp.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Expense app</title>
</head>
<body>
<h1 style="text-align: center; background-color: blueviolet;"><strong>EXPENSE APP</strong></h1>
<table style="width:100%">
<tr>
<th><input name="login" type="button" value="Login" style="border: none;
cursor: pointer;
background-color: #6e37cc;
transition: background-color .3s ease;
border-radius: 8px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 12px 20px;
width: -moz-max-content;
width: max-content;
color: #fff;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 20px;
margin: 55px auto 0;"></th>
<th><input name="add" type="button" value="Add" style="border: none;
cursor: pointer;
background-color: #6e37cc;
transition: background-color .3s ease;
border-radius: 8px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 12px 20px;
width: -moz-max-content;
width: max-content;
color: #fff;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 20px;
margin: 55px auto 0;"></th>
<th><input name="delete" type="button" value="Delete" style="border: none;
cursor: pointer;
background-color: #6e37cc;
transition: background-color .3s ease;
border-radius: 8px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 12px 20px;
width: -moz-max-content;
width: max-content;
color: #fff;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 20px;
margin: 55px auto 0;"></th>
<th><input name="chart" type="button" value="Graph" style="border: none;
cursor: pointer;
background-color: #6e37cc;
transition: background-color .3s ease;
border-radius: 8px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 12px 20px;
width: -moz-max-content;
width: max-content;
color: #fff;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 20px;
margin: 55px auto 0;"></th>
<th><input name="logout" type="button" value="Logout" style="border: none;
cursor: pointer;
background-color: #6e37cc;
transition: background-color .3s ease;
border-radius: 8px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 12px 20px;
width: -moz-max-content;
width: max-content;
color: #fff;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 20px;
margin: 55px auto 0;"></th>
</tr>
</table>
<table style="width: 80%;">
<td>
<br>
<table style="border: 2px solid;">
<tr style="background-color: rgb(207, 159, 255)">
<th style="text-align: center;" colspan="2"><strong>New Expense</strong></th>
</tr>
<tr>
<th style="text-align: right;">Item : </th>
<td><input type="text" style="background-color: lightskyblue"></td>
</tr>
<tr>
<th style="text-align: right;">Amount : </th>
<td><input type="text" style="background-color: lightskyblue"></td>
</tr>
<tr>
<th style="text-align: right;">Date : </th>
<td><input type="date" style="background-color: lightskyblue"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Submit" style="background-color: lightskyblue; font-weight: bold;">
<input type="reset" value="Reset" style="background-color: lightskyblue;font-weight: bold;">
</td>
</tr>
</table>
</td>
<td>
<table style="border: 2px solid; width: 150%; border-collapse: collapse;">
<tr>
<th colspan="6" style="background-color: rgb(207, 159, 255);">Expense List</th>
</tr>
<tr style="border: 2px solid;margin-top: auto; margin-bottom: auto;">
<th style="border: 1px solid;">Index</th>
<th style="border: 1px solid;">Item</th>
<th style="border: 1px solid;">Amount</th>
<th style="border: 1px solid;">Date</th>
</tr>
<tr style="border: 2px solid; margin-top: auto;margin-bottom: auto;">
<td style="text-align: center; border: 1px solid;"> </td>
<td style="text-align: center; border: 1px solid;"> </td>
<td style="text-align: center; border: 1px solid;"> </td>
<td style="text-align: center; border: 1px solid;"> </td>
</tr>
<tr style="border: 2px solid; margin-top: auto;margin-bottom: auto;">
<td style="text-align: center; border: 1px solid;"> </td>
<td style="text-align: center; border: 1px solid;"> </td>
<td style="text-align: center; border: 1px solid;"> </td>
<td style="text-align: center; border: 1px solid;"> </td>
</tr>
<tfoot>
<th colspan="3">Total : </th>
</tfoot>
</table>
</td>
</table>
</body>
</html>