|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Chase Private Client Banking</title> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<style> |
|
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap'); |
|
|
|
body { |
|
font-family: 'Open Sans', sans-serif; |
|
background-color: #f8fafc; |
|
} |
|
|
|
.chase-blue { |
|
background-color: #117ACA; |
|
} |
|
|
|
.chase-blue-text { |
|
color: #117ACA; |
|
} |
|
|
|
.balance-glow { |
|
text-shadow: 0 0 10px rgba(255, 215, 0, 0.7); |
|
} |
|
|
|
.card-hover:hover { |
|
transform: translateY(-5px); |
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); |
|
} |
|
|
|
.transition-all { |
|
transition: all 0.3s ease; |
|
} |
|
</style> |
|
</head> |
|
<body class="min-h-screen bg-gray-50"> |
|
|
|
<div id="login-page" class="flex flex-col min-h-screen"> |
|
|
|
<header class="chase-blue text-white py-4 px-6 shadow-md"> |
|
<div class="container mx-auto flex justify-between items-center"> |
|
<div class="flex items-center space-x-2"> |
|
<i class="fas fa-university text-2xl"></i> |
|
<h1 class="text-2xl font-bold">Chase</h1> |
|
</div> |
|
<div class="hidden md:flex space-x-4"> |
|
<a href="#" class="text-white hover:underline">Personal</a> |
|
<a href="#" class="text-white hover:underline">Business</a> |
|
<a href="#" class="text-white hover:underline">Commercial</a> |
|
<a href="#" class="text-white hover:underline">About Chase</a> |
|
</div> |
|
</div> |
|
</header> |
|
|
|
|
|
<main class="flex-grow flex items-center justify-center p-6"> |
|
<div class="w-full max-w-md bg-white rounded-xl shadow-lg overflow-hidden transition-all transform hover:shadow-xl"> |
|
<div class="chase-blue py-4 px-6"> |
|
<h2 class="text-xl font-bold text-white">Sign in to your account</h2> |
|
</div> |
|
|
|
<div class="p-6"> |
|
<form id="login-form" class="space-y-4"> |
|
<div> |
|
<label for="username" class="block text-sm font-medium text-gray-700">Username</label> |
|
<input type="text" id="username" name="username" required |
|
class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-chase-blue focus:border-chase-blue"> |
|
</div> |
|
|
|
<div> |
|
<label for="password" class="block text-sm font-medium text-gray-700">Password</label> |
|
<input type="password" id="password" name="password" required |
|
class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-chase-blue focus:border-chase-blue"> |
|
</div> |
|
|
|
<div class="flex items-center"> |
|
<input id="remember-me" name="remember-me" type="checkbox" |
|
class="h-4 w-4 text-chase-blue focus:ring-chase-blue border-gray-300 rounded"> |
|
<label for="remember-me" class="ml-2 block text-sm text-gray-700">Remember me</label> |
|
</div> |
|
|
|
<div> |
|
<button type="submit" |
|
class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white chase-blue hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-all"> |
|
Sign in |
|
</button> |
|
</div> |
|
</form> |
|
|
|
<div class="mt-4 text-center"> |
|
<a href="#" class="text-sm text-chase-blue hover:underline">Forgot username or password?</a> |
|
</div> |
|
|
|
<div class="mt-6"> |
|
<div class="relative"> |
|
<div class="absolute inset-0 flex items-center"> |
|
<div class="w-full border-t border-gray-300"></div> |
|
</div> |
|
<div class="relative flex justify-center text-sm"> |
|
<span class="px-2 bg-white text-gray-500">New to Chase?</span> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-4"> |
|
<a href="#" class="w-full flex justify-center py-2 px-4 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-all"> |
|
Open an account |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</main> |
|
|
|
|
|
<footer class="bg-gray-100 py-6 px-6 border-t border-gray-200"> |
|
<div class="container mx-auto"> |
|
<div class="flex flex-col md:flex-row justify-between items-center"> |
|
<div class="flex space-x-4 mb-4 md:mb-0"> |
|
<a href="#" class="text-sm text-gray-600 hover:underline">Privacy</a> |
|
<a href="#" class="text-sm text-gray-600 hover:underline">Security</a> |
|
<a href="#" class="text-sm text-gray-600 hover:underline">Terms of Use</a> |
|
<a href="#" class="text-sm text-gray-600 hover:underline">Accessibility</a> |
|
</div> |
|
<div class="text-sm text-gray-500"> |
|
© 2023 JPMorgan Chase & Co. |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
</div> |
|
|
|
|
|
<div id="dashboard-page" class="hidden min-h-screen flex flex-col"> |
|
|
|
<header class="chase-blue text-white py-4 px-6 shadow-md"> |
|
<div class="container mx-auto flex justify-between items-center"> |
|
<div class="flex items-center space-x-2"> |
|
<i class="fas fa-university text-2xl"></i> |
|
<h1 class="text-2xl font-bold">Chase Private Client</h1> |
|
</div> |
|
<div class="flex items-center space-x-4"> |
|
<div class="hidden md:flex items-center space-x-2"> |
|
<i class="fas fa-bell"></i> |
|
<i class="fas fa-envelope"></i> |
|
<i class="fas fa-question-circle"></i> |
|
</div> |
|
<div class="flex items-center space-x-2"> |
|
<i class="fas fa-user-circle text-2xl"></i> |
|
<span id="welcome-user" class="font-medium">Welcome, Client</span> |
|
<button id="logout-btn" class="ml-2 px-3 py-1 bg-white text-chase-blue rounded-md text-sm font-medium hover:bg-gray-100 transition-all"> |
|
Sign Out |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
</header> |
|
|
|
|
|
<main class="flex-grow p-6"> |
|
<div class="container mx-auto"> |
|
|
|
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-8 transition-all card-hover"> |
|
<div class="chase-blue py-4 px-6"> |
|
<h2 class="text-xl font-bold text-white">Account Overview</h2> |
|
</div> |
|
|
|
<div class="p-6"> |
|
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6"> |
|
<div> |
|
<h3 class="text-lg font-semibold text-gray-800">Private Client Checking</h3> |
|
<p class="text-gray-600">Account ending in 6969</p> |
|
</div> |
|
<div class="mt-4 md:mt-0"> |
|
<span class="text-sm font-medium text-gray-500">Available Balance</span> |
|
<div class="text-3xl font-bold chase-blue-text balance-glow" id="account-balance">$500,000,000.00</div> |
|
</div> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-4"> |
|
<button class="flex items-center justify-center space-x-2 py-3 px-4 bg-gray-100 rounded-lg hover:bg-gray-200 transition-all"> |
|
<i class="fas fa-exchange-alt text-chase-blue"></i> |
|
<span>Transfer</span> |
|
</button> |
|
<button class="flex items-center justify-center space-x-2 py-3 px-4 bg-gray-100 rounded-lg hover:bg-gray-200 transition-all"> |
|
<i class="fas fa-money-bill-wave text-chase-blue"></i> |
|
<span>Pay Bills</span> |
|
</button> |
|
<button class="flex items-center justify-center space-x-2 py-3 px-4 bg-gray-100 rounded-lg hover:bg-gray-200 transition-all"> |
|
<i class="fas fa-piggy-bank text-chase-blue"></i> |
|
<span>Deposit</span> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-8 transition-all card-hover"> |
|
<div class="chase-blue py-4 px-6"> |
|
<h2 class="text-xl font-bold text-white">Recent Transactions</h2> |
|
</div> |
|
|
|
<div class="p-6"> |
|
<div class="overflow-x-auto"> |
|
<table class="min-w-full divide-y divide-gray-200"> |
|
<thead class="bg-gray-50"> |
|
<tr> |
|
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th> |
|
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Description</th> |
|
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Amount</th> |
|
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Balance</th> |
|
</tr> |
|
</thead> |
|
<tbody class="bg-white divide-y divide-gray-200"> |
|
<tr> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Today</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Private Client Bonus</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-green-600">+$100,000,000.00</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$500,000,000.00</td> |
|
</tr> |
|
<tr> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Yesterday</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Luxury Yacht Purchase</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-red-600">-$75,000,000.00</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$400,000,000.00</td> |
|
</tr> |
|
<tr> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">2 days ago</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Private Island Investment</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-red-600">-$125,000,000.00</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$475,000,000.00</td> |
|
</tr> |
|
<tr> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">3 days ago</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Stock Market Gains</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-green-600">+$200,000,000.00</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$600,000,000.00</td> |
|
</tr> |
|
</tbody> |
|
</table> |
|
</div> |
|
|
|
<div class="mt-4 text-center"> |
|
<a href="#" class="text-sm text-chase-blue hover:underline">View all transactions</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-6"> |
|
|
|
<div class="bg-white rounded-xl shadow-md overflow-hidden transition-all card-hover"> |
|
<div class="chase-blue py-4 px-6"> |
|
<h2 class="text-xl font-bold text-white">Investments</h2> |
|
</div> |
|
|
|
<div class="p-6"> |
|
<div class="flex justify-between items-center mb-4"> |
|
<h3 class="text-lg font-semibold text-gray-800">Portfolio Value</h3> |
|
<span class="text-xl font-bold text-chase-blue">$12,450,000.00</span> |
|
</div> |
|
|
|
<div class="space-y-3"> |
|
<div class="flex justify-between items-center"> |
|
<span class="text-gray-600">Stocks</span> |
|
<span class="font-medium">$8,200,000.00</span> |
|
</div> |
|
<div class="flex justify-between items-center"> |
|
<span class="text-gray-600">Bonds</span> |
|
<span class="font-medium">$2,750,000.00</span> |
|
</div> |
|
<div class="flex justify-between items-center"> |
|
<span class="text-gray-600">Mutual Funds</span> |
|
<span class="font-medium">$1,500,000.00</span> |
|
</div> |
|
</div> |
|
|
|
<button class="mt-4 w-full py-2 px-4 bg-chase-blue text-white rounded-md hover:bg-blue-700 transition-all"> |
|
Manage Investments |
|
</button> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white rounded-xl shadow-md overflow-hidden transition-all card-hover"> |
|
<div class="chase-blue py-4 px-6"> |
|
<h2 class="text-xl font-bold text-white">Credit Cards</h2> |
|
</div> |
|
|
|
<div class="p-6"> |
|
<div class="flex justify-between items-center mb-4"> |
|
<h3 class="text-lg font-semibold text-gray-800">Chase Sapphire Reserve</h3> |
|
<span class="text-xl font-bold text-chase-blue">$250,000 Limit</span> |
|
</div> |
|
|
|
<div class="space-y-3"> |
|
<div class="flex justify-between items-center"> |
|
<span class="text-gray-600">Current Balance</span> |
|
<span class="font-medium">$48,750.00</span> |
|
</div> |
|
<div class="flex justify-between items-center"> |
|
<span class="text-gray-600">Available Credit</span> |
|
<span class="font-medium">$201,250.00</span> |
|
</div> |
|
<div class="flex justify-between items-center"> |
|
<span class="text-gray-600">Payment Due</span> |
|
<span class="font-medium">May 15, 2023</span> |
|
</div> |
|
</div> |
|
|
|
<button class="mt-4 w-full py-2 px-4 bg-chase-blue text-white rounded-md hover:bg-blue-700 transition-all"> |
|
Pay Credit Card |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</main> |
|
|
|
|
|
<footer class="bg-gray-100 py-6 px-6 border-t border-gray-200"> |
|
<div class="container mx-auto"> |
|
<div class="flex flex-col md:flex-row justify-between items-center"> |
|
<div class="flex space-x-4 mb-4 md:mb-0"> |
|
<a href="#" class="text-sm text-gray-600 hover:underline">Privacy</a> |
|
<a href="#" class="text-sm text-gray-600 hover:underline">Security</a> |
|
<a href="#" class="text-sm text-gray-600 hover:underline">Terms of Use</a> |
|
<a href="#" class="text-sm text-gray-600 hover:underline">Accessibility</a> |
|
</div> |
|
<div class="text-sm text-gray-500"> |
|
© 2023 JPMorgan Chase & Co. |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
</div> |
|
|
|
<script> |
|
|
|
document.getElementById('login-form').addEventListener('submit', function(e) { |
|
e.preventDefault(); |
|
|
|
const username = document.getElementById('username').value; |
|
|
|
|
|
document.getElementById('login-page').classList.add('hidden'); |
|
document.getElementById('dashboard-page').classList.remove('hidden'); |
|
|
|
|
|
document.getElementById('welcome-user').textContent = `Welcome, ${username || 'Valued Client'}`; |
|
|
|
|
|
const balanceElement = document.getElementById('account-balance'); |
|
balanceElement.textContent = '$0.00'; |
|
|
|
let balance = 0; |
|
const targetBalance = 500000000; |
|
const increment = targetBalance / 50; |
|
|
|
const interval = setInterval(() => { |
|
balance += increment; |
|
if (balance >= targetBalance) { |
|
balance = targetBalance; |
|
clearInterval(interval); |
|
} |
|
balanceElement.textContent = `$${balance.toLocaleString('en-US', {minimumFractionDigits: 2, maximumFractionDigits: 2})}`; |
|
}, 30); |
|
}); |
|
|
|
|
|
document.getElementById('logout-btn').addEventListener('click', function() { |
|
|
|
document.getElementById('dashboard-page').classList.add('hidden'); |
|
document.getElementById('login-page').classList.remove('hidden'); |
|
|
|
|
|
document.getElementById('login-form').reset(); |
|
}); |
|
</script> |
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Canalee07/canalee" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |