aboutsummaryrefslogtreecommitdiffstats
path: root/public/projects/js-small-apps/budget-app/index.html
blob: 90f5d12e557bde56fdb0b0f19b5312ac458bbf64 (plain)
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<!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>Budget App</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <header class="branding">
      <h1 class="branding__title">Budget App</h1>
    </header>
    <main class="main">
      <div class="register">
        <form action="#" class="register__form form">
          <p class="form__item">
            <label for="register-username" class="form__label"
              >Enter a username:</label
            >
            <input
              type="text"
              id="register-username"
              name="register-username"
              class="form__field"
              required
            />
          </p>
          <p class="form__item">
            <label for="register-budget" class="form__label"
              >Enter a budget:</label
            >
            <input
              type="number"
              id="register-budget"
              name="register-budget"
              class="form__field"
              required
            />
          </p>
          <p class="form__item">
            <label for="register-locale" class="form__label"
              >Select a language:</label
            >
            <select
              name="register-locale"
              id="register-locale"
              class="form__select"
              required
            >
              <option value="en-US">Anglais</option>
              <option value="fr-FR">Français</option>
            </select>
          </p>
          <button type="submit" class="btn btn--register">Register</button>
        </form>
      </div>
      <div class="app">
        <div class="app__management">
          <div class="app__categories">
            <h2 class="app__title">Categories</h2>
            <form action="#" class="manage-categories form">
              <fieldset class="form__fieldset">
                <legend class="form__legend">Add a new category</legend>
                <p class="form__item">
                  <label for="add-category" class="form__label"
                    >Category name:</label
                  >
                  <input
                    type="text"
                    name=""
                    id="add-category"
                    class="form__field"
                    required
                  />
                  <button type="submit" class="form__submit btn btn--add">
                    Add
                  </button>
                </p>
              </fieldset>
              <fieldset class="form__fieldset">
                <legend class="form__legend">Manage existing categories</legend>
                <p class="form__item">
                  <label for="select-category" class="form__label"
                    >Select a category:</label
                  >
                  <select
                    name="select-category"
                    id="select-category"
                    class="form__select"
                  >
                    <option value="undefined" class="form__option">
                      Undefined
                    </option>
                  </select>
                  <button type="submit" class="form__submit btn btn--delete">
                    Delete
                  </button>
                </p>
                <p class="form__item">
                  <label for="rename-category" class="form__label"
                    >New name:</label
                  >
                  <input
                    type="text"
                    name="rename-category"
                    id="rename-category"
                    class="form__field"
                  />
                  <button type="submit" class="form__submit btn btn--rename">
                    Rename
                  </button>
                </p>
              </fieldset>
            </form>
          </div>
          <div class="app__transactions">
            <h2 class="app__title">Transactions</h2>
            <form action="#" class="manage-transactions form">
              <fieldset class="form__fieldset">
                <legend class="form__legend">Manage transactions</legend>
                <p class="form__item">
                  <label for="transaction-date" class="form__label"
                    >Select a date:</label
                  >
                  <input
                    type="date"
                    name="transaction-date"
                    id="transaction-date"
                    class="form__field"
                    required
                  />
                </p>
                <p class="form__item">
                  <label for="" class="form__label">Choose a type:</label>
                  <select
                    name="transaction-type"
                    id="transaction-type"
                    class="form__select"
                  >
                    <option value=""></option>
                    <option value="expense">Expense</option>
                    <option value="income">Income</option>
                  </select>
                </p>
                <p class="form__item">
                  <label for="" class="form__label">Choose a category:</label>
                  <select
                    name="transaction-category"
                    id="transaction-category"
                    class="form__select"
                  >
                    <option value="undefined">Undefined</option>
                  </select>
                </p>
                <p class="form__item">
                  <label for="transaction-name" class="form__label"
                    >Name:</label
                  >
                  <input
                    type="text"
                    name="transaction-name"
                    id="transaction-name"
                    class="form__field"
                    required
                  />
                </p>
                <p class="form__item">
                  <label for="transaction-amount" class="form__label"
                    >Amount:</label
                  >
                  <input
                    type="number"
                    name="transaction-amount"
                    id="transaction-amount"
                    step="0.01"
                    class="form__field"
                    required
                  />
                </p>
                <input
                  type="hidden"
                  name="transaction-id"
                  id="transaction-id"
                />
                <button type="submit" class="form__submit btn btn--update">
                  Update
                </button>
              </fieldset>
            </form>
          </div>
          <div class="app__budget">
            <h2 class="app__title">Budget state</h2>
            <table class="table">
              <thead class="table__header">
                <tr>
                  <td class="table__item">Spent</td>
                  <td class="table__item">Remaining</td>
                </tr>
              </thead>
              <tbody class="table__body">
                <tr>
                  <td id="budget-spent" class="table__item">0</td>
                  <td id="budget-remaining" class="table__item">0</td>
                </tr>
              </tbody>
            </table>
          </div>
        </div>
        <div class="app__history">
          <h2 class="app__title">History</h2>
          <table class="table">
            <thead class="table__header">
              <td class="table__item">Date</td>
              <td class="table__item">Name</td>
              <td class="table__item">Category</td>
              <td class="table__item">Type</td>
              <td class="table__item">Amount</td>
              <td class="table__item">Manage</td>
            </thead>
            <tbody class="table__body"></tbody>
          </table>
        </div>
      </div>
    </main>
    <footer class="footer container">
      <button type="button" class="btn btn--reset">Reset</button>
      <p class="footer__copyright">Budget App. MIT 2021. Armand Philippot.</p>
    </footer>
    <script src="app.js" type="module"></script>
  </body>
</html>