26 lines
963 B
HTML
Executable File
26 lines
963 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Wallet</title>
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body class="bg-light">
|
|
<div class="container mt-5">
|
|
<h1>Wallet for {{ user['username'] }}#{{ user['discriminator'] }}</h1>
|
|
<h2>Your Balances:</h2>
|
|
<ul class="list-group">
|
|
<li class="list-group-item">Wallet: ${{ balance.wallet }}</li>
|
|
<li class="list-group-item">Bank: ${{ balance.bank }}</li>
|
|
</ul>
|
|
|
|
<a href="{{ url_for('home') }}" class="btn btn-secondary mt-3">Back to Home</a>
|
|
</div>
|
|
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
|
</body>
|
|
|
|
</html> |