You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
786 B
HTML

{% extends 'includes/base.html' %}
{% block content %}
11 months ago
<h1>Monero Lightwallet Server</h1>
1 year ago
<p>LWS Admin: {{ config.LWS_ADMIN_URL }}</p>
<p>LWS RPC: {{ config.LWS_URL }}</p>
11 months ago
<div>
<a hx-get="/htmx/import_wallet" hx-target="#walletForm" class="button primary outline">Import Wallet</a>
<a hx-get="/htmx/create_wallet" hx-target="#walletForm" class="button primary">Create Wallet</a>
<p id="walletForm" style="margin: 2em 0 2em 0"></p>
11 months ago
</div>
<div>
<h3>Accounts</h3>
11 months ago
<div hx-get="/htmx/show_wallets" hx-target="#show_wallets" class="button outline" hx-indicator="#refreshLoader">
Refresh
<i class="fa-solid fa-rotate-right indicator" id="refreshLoader"></i>
</div>
<div hx-trigger="load" hx-get="/htmx/show_wallets" id="show_wallets"></div>
</div>
11 months ago
{% endblock %}