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.
|
|
|
{% extends 'includes/base.html' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<h1>Monero Lightwallet Server</h1>
|
|
|
|
<p>LWS Admin: {{ config.LWS_ADMIN_URL }}</p>
|
|
|
|
<p>LWS RPC: {{ config.LWS_URL }}</p>
|
|
|
|
<h3>Accounts</h3>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<a hx-get="/htmx/import_wallet" hx-target="#walletEvent" class="button primary outline">
|
|
|
|
Import Wallet
|
|
|
|
</a>
|
|
|
|
<a hx-get="/htmx/create_wallet" hx-target="#walletEvent" class="button primary">
|
|
|
|
Create Wallet
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="" style="margin-top: 2em">
|
|
|
|
<p id="walletEvent"></p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div hx-trigger="every 15s" hx-get="/htmx/show_wallets" hx-target="#show_wallets"></div>
|
|
|
|
<div hx-trigger="load" hx-get="/htmx/show_wallets" id="show_wallets"></div>
|
|
|
|
|
|
|
|
{% endblock %}
|