flask web app (wip)
This commit is contained in:
23
crypto/sol/templates/dashboard.html
Normal file
23
crypto/sol/templates/dashboard.html
Normal file
@ -0,0 +1,23 @@
|
||||
{% 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 %}
|
Reference in New Issue
Block a user