-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwallet.html
87 lines (82 loc) · 4.32 KB
/
wallet.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.min.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<title>My Wallet</title>
</head>
<body class="mx-auto">
<!-- Header -->
<header class="lg:px-16">
<div class="pt-6 pb-12 text-3xl flex justify-between">
<button class="text-3xl font-medium">SMART-WALLET</button>
<button ><input type="checkbox" value="synthwave" class="toggle theme-controller"/></button>
</div>
</header>
<section class="bg-cover bg-center h-screen flex flex-col gap-10 " style="background-image: url('./images/Wallet-Background.jpg');">
<div class="lg:px-16 px-5 pt-14">
<h1 class="text-2xl mb-4 text-center bg-white bg-opacity-50 px-40 p-3 rounded-md shadow-md"><i class='bx bxs-wallet' ></i> Waller Manager</h1>
</div>
<div class="lg:px-16 px-5 w-full mx-auto lg:flex justify-between gap-5">
<div class="w-full mx-auto bg-green-500 text-white text-center text-3xl py-2 px-4 rounded-md">
Deposite <br> <span id="totaldeposite" class="ml-2">00</span> BDT
</div>
<div class="w-full mx-auto bg-red-500 text-white text-center text-3xl py-2 px-4 rounded-md">
Withdraw <br> <span id="totalwithdraw" class="ml-2">00</span> BDT
</div>
<div class="w-full mx-auto bg-blue-500 text-white text-center text-3xl py-2 px-4 rounded-md">
Current Wallet <br> <span id="current-wallet" class="ml-2">00</span> BDT
</div>
</div>
<div class="lg:px-16 px-5 bg-cover bg-center h-screen lg:flex justify-center items-center gap-5">
<div class=" bg-white bg-opacity-50 w-full mx-auto p-5 py-5 flex flex-col gap-5 rounded-md">
<h1 class="text-3xl ">Diposite Money</h1>
<input type="number" id="diposite" class="w-full px-3 py-2 border rounded-md" placeholder="Enter amount you want to deposite" required>
<button onclick="depositeMoney()" class="bg-yellow-500 w-2/6 p-3 rounded-xl">
Diposite
</button>
</div>
<div class=" bg-white bg-opacity-50 w-full mx-auto p-5 py-5 flex flex-col gap-5 rounded-md">
<h1 class="text-3xl ">Withdraw Money</h1>
<input type="number" id="withdraw" class="w-full px-3 py-2 border rounded-md" placeholder="Enter amount you want to withdraw" required>
<button onclick="withdrawMoney()" class="bg-green-600 w-2/6 p-3 rounded-xl">
Withdraw
</button>
</div>
</div>
</section>
<!-- footer -->
<footer class="lg:px-16 px-5 py-10">
<section class="p-3 lg:flex justify-between">
<div class="flex gap-10">
<button>ABOUT</button>
<button>HOW IT WORKS</button>
<button>CONTACT</button>
</div>
<div>
<button onclick="index()" class="text-3xl">SMART-WALLET</button>
</div>
<div class="flex gap-10">
<button>Singup</button>
<button onclick="login()">Login</button>
</div>
<div class="flex items-center gap-10">
<button onclick="index()"><i class='text-3xl bx bxl-facebook-square'></i> </button>
<button onclick="index()"><i class='text-3xl bx bxl-github' ></i></button>
<button onclick="index()"><i class='text-3xl bx bxl-telegram' ></i></button>
</div>
</section>
<div class="p-2 border-t border-black my-4"></div>
<div class="p-3 flex justify-between">
<h1 class="">Copyright © 2023.Smart Solution Ltd.</h1>
<div class="border-t-2 border-black text-transparent"><p>.....................................................................................................................................................</p></div>
<h1 class="">Designed by Mehedi</h1>
</div>
</footer>
<script type="" src="script.js"></script>
</body>
</html>