web: start: add dynamique menu
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
parent
50a290d808
commit
b67e79973c
9 changed files with 343 additions and 8 deletions
29
web/pages/account/index.html
Normal file
29
web/pages/account/index.html
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<div id="account-page">
|
||||
<div id="account-header">
|
||||
<div id="account-title">
|
||||
<h2 id="account-name"></h2>
|
||||
<span id="account-id"></span>
|
||||
</div>
|
||||
<div id="account-balance-block">
|
||||
<span class="balance-label">Solde</span>
|
||||
<span id="account-balance"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section id="account-transactions">
|
||||
<h3>Transactions récentes</h3>
|
||||
<table id="tx-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
<th>Libellé</th>
|
||||
<th class="amount-col">Montant</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="tx-body"></tbody>
|
||||
</table>
|
||||
</section>
|
||||
|
||||
<div id="account-error" style="display:none"></div>
|
||||
<div id="account-loading">Chargement…</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue