New Membership Page and other changes #4

Merged
kumi merged 29 commits from membership-page into main 2024-05-30 10:15:10 +00:00
2 changed files with 48 additions and 13 deletions
Showing only changes of commit 78cfa76a6d - Show all commits

View file

@ -85,6 +85,11 @@ h5 {
margin-top: 10px;
}
.currency-col {
width: 150px;
white-space: nowrap;
}
/* Responsive Styles */
@media (max-width: 768px) {
.navbar .container {

View file

@ -74,50 +74,80 @@
income and expenses for the last month.
</p>
<div class="table-responsive">
<table class="table table-bordered">
<thead class="table-light">
<tr>
<th scope="col">Category</th>
<th scope="col">Amount (€)</th>
<th class="currency-col" scope="col">Euros (€)</th>
<th class="currency-col" scope="col">Bitcoin (BTC)</th>
<th class="currency-col" scope="col">Ethereum (ETH)</th>
<th class="currency-col" scope="col">Monero (XMR)</th>
</tr>
</thead>
<tbody>
<tr>
<td>Membership Fees</td>
<td>€390</td>
<td>+ €5,000</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Donations</td>
<td>€0</td>
</tr>
<tr>
<td>Crypto Donations</td>
<td>BTC 0 / XMR 0 / ETH 0</td>
<td>+ €3,200</td>
<td>+ 500 BTC</td>
<td>+ 700 ETH</td>
<td>+ 300 XMR</td>
</tr>
<tr>
<td>Server Costs</td>
<td>€2,800</td>
<td>- €2,800</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Domain Names</td>
<td>€400</td>
<td>- €400</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Operating Expenses</td>
<td>€1,200</td>
<td>- €1,200</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Conversions</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="table-secondary">
<td><b>Total Income</b></td>
<td><b>€390</b></td>
<td><b>€9,700</b></td>
<td><b>500 BTC</b></td>
<td><b>700 ETH</b></td>
<td><b>300 XMR</b></td>
</tr>
<tr class="table-secondary">
<td><b>Total Expenses</b></td>
<td><b>€4,400</b></td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="table-secondary">
<td><b>Account Balance (end of month)</b></td>
<td><b>€-5,300 / 0 BTC / 0 XMR / 0 BTC</b></td>
</tr>
<td><b>€5,300</b></td>
<td><b>500 BTC</b></td>
<td><b>700 ETH</b></td>
<td><b>300 XMR</b></td>
</tbody>
</table>
</div>