add /cash ui
This commit is contained in:
@@ -1,32 +1,39 @@
|
||||
<h1>Message:</h1>
|
||||
<script src="/assets/build/cash.js"></script>
|
||||
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">Day</th>
|
||||
<th scope="col">Month</th>
|
||||
<th scope="col">Year</th>
|
||||
<th scope="col">Amount</th>
|
||||
<th scope="col">Type</th>
|
||||
<th scope="col">Company</th>
|
||||
<th scope="col">Raw</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<header>
|
||||
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
|
||||
<div class="container-fluid">
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
|
||||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<form class="d-flex" action="" id="myform">
|
||||
<input class="form-control me-2" type="password" name="password" id="pass" placeholder="password">
|
||||
<input class="btn btn-outline-success" type="submit" value="Submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
{{#each messages}}
|
||||
<tr>
|
||||
<th scope="row">{{@index}}</th>
|
||||
<td>{{day}}</td>
|
||||
<td>{{month}}</td>
|
||||
<td>{{year}}</td>
|
||||
<td>{{amount}} EUR</td>
|
||||
<td>{{type}}</td>
|
||||
<td>{{company}}</td>
|
||||
<td>{{raw}}</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
<main class="bg-body-tertiary pt-5 pb-5">
|
||||
<div class="container">
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">Day</th>
|
||||
<th scope="col">Month</th>
|
||||
<th scope="col">Year</th>
|
||||
<th scope="col">Amount</th>
|
||||
<th scope="col">Type</th>
|
||||
<th scope="col">Company</th>
|
||||
<th scope="col">Raw</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="tbody">
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</main>
|
Reference in New Issue
Block a user