feat: Add install instructions and update login to have a dropdown

This commit is contained in:
2024-01-29 15:19:38 +11:00
parent 86e4f1f2b9
commit 735bd68302
5 changed files with 41 additions and 4 deletions

View File

@@ -171,4 +171,11 @@ def bids(bids,reveals):
else:
html += "<td>Unknown</td>"
html += "</tr>"
return html
def wallets(wallets):
html = ''
for wallet in wallets:
html += f'<option value="{wallet}">{wallet}</option>'
return html