Refactor main.py, Fix model, update user.html,

This commit is contained in:
Dominic Zimmer
2020-07-17 23:43:09 +02:00
parent f0b30fdd7d
commit fe8635ea93
3 changed files with 9 additions and 78 deletions

View File

@@ -23,6 +23,9 @@
display: flex;
justify-content: space-around;
}
input {
width: 8rem;
}
</style>
</head>
@@ -36,26 +39,20 @@
<table id="thetable">
<tbody>
<tr>
<td>Current Washing Coins:</td>
<td>Sold Washing Coins</td>
<td id="currentcoins">42</td>
</tr>
<tr>
<td>Maximally Available:</td>
<td>69</td>
<td>Maximum Available</td>
<td id="maxcoins">69</td>
</tr>
</tbody>
</table>
<div class="biceps">
<div>
<button>Click me</button>
</div>
<div>
<input type="number" value = "42" >
<button>Click me</button>
</div>
<div>
<button>Click me</button>
<input type="number" value = "1" >
<button id="sell">Sell</button>
</div>
</div>