You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
wowstash/wowstash/templates/wallet/dashboard.html

99 lines
3.0 KiB

<!DOCTYPE html>
<html lang="en">
{% include 'head.html' %}
<body id="page-top">
{% include 'navbar.html' %}
<!-- Height ({{ daemon_height }} / {{ wallet_height }})
Transactions - Send - Receive
Your Address
Transaction History
Balance: -->
<!-- <header class="masthead">
<div class="container h-100">
<div class="row h-100">
<div class="col-lg-4 my-auto">
<div class="header-content mx-auto">
<h2 class="mb-5">Welcome Back {{ current_user.email }}</h2>
<h3 class="sm">Account Address</h3>
<p class="small">address</p>
<h3 class="sm">Wallet Persistence</h3>
{% if wallet %}
<h3 class="sm">Account Balance</h3>
<p class="small">{{ h }}</p>
<h3 class="sm">Wallet File</h3>
<p class="small">{{ config.WALLET_PATH }}</p>
{% else %}
<h3 class="sm">Wallet Status</h3>
<p class="small">Not Connected</p>
{% endif %}
<a href="/account/wallet/" class="btn btn-outline btn-xl">Connect Wallet</a>
</div>
</div>
<div class="col-lg-6 my-auto">
<div class="header-content mx-auto">
<h1 class="mb-5">Logs</h1>
<h3 class="sm">Transaction Log</h3>
<p class="small">asd</p>
</div>
</div>
</div>
</div>
</header> -->
<section class="section2" id="">
<div class="container">
<!-- <div class="section-heading text-center">
<h2>Welcome</h2>
<p>Prices and network information</p>
<hr>
</div> -->
<div class="row fp-row">
<div class="col-lg-4">
<a class="btn btn-lg btn-link btn-outline btn-xl" href="#">Transactions</a>
</div>
<div class="col-lg-4">
<a class="btn btn-lg btn-link btn-outline btn-xl" href="#">Send</a>
</div>
<div class="col-lg-4">
<a class="btn btn-lg btn-link btn-outline btn-xl" href="#">Receive</a>
</div>
</div>
<div class="row fp-row">
<p>Your address: {{ subaddress }}</p>
</div>
</div>
</section>
<!-- <section class="section1" id="seed">
<div class="container">
<div class="section-heading text-center">
<h2>Manage your funds</h2>
<p class="text-muted">This is your mnemonic seed and account password.</p>
<p class="text-muted">Store it securely and never share it with anyone. Use this to log into {{ config.SITE_NAME }}.</p>
<p class="text-muted">If you'd like a new seed, refresh the page.</p>
<hr><br>
<p>{{ seed }}</p>
<hr><br>
<a href="/login" class="btn btn-outline-inverse btn-xl">Login</a>
</div>
</div>
</section> -->
{% include 'footer.html' %}
{% include 'scripts.html' %}
</body>
</html>