23 lines
520 B
HTML
23 lines
520 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1>Dashboard</h1>
|
|
<p>Welcome, {{ current_user.username }}!</p>
|
|
|
|
<h2>Your Wallets</h2>
|
|
<div id="wallets"></div>
|
|
|
|
<h2>Recent Transactions</h2>
|
|
<div id="transactions"></div>
|
|
|
|
<h2>Holdings</h2>
|
|
<div id="holdings"></div>
|
|
|
|
<button id="generate-api-key">Generate API Key</button>
|
|
<p id="api-key-display"></p>
|
|
|
|
<script>
|
|
// Add JavaScript to fetch and display wallet data, transactions, and holdings
|
|
// Also add functionality for generating API key
|
|
</script>
|
|
{% endblock %} |