|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | + <title>Banking System Website - Shubhanshu</title> |
| 8 | + <link rel="stylesheet" type="text/css" href="style.css"> |
| 9 | +</head> |
| 10 | +<body> |
| 11 | + <header> |
| 12 | + <div class="logo"> |
| 13 | + <img src="Assets/img/logo.png" alt="My Bank App Logo"> |
| 14 | + <h1><span>GRIP</span> BANK</h1> |
| 15 | + </div> |
| 16 | + <nav> |
| 17 | + <ul> |
| 18 | + <li><a href="index.html">Home</a></li> |
| 19 | + <li><a href="#about">About Me</a></li> |
| 20 | + <li><a href="#contact">Contact Us</a></li> |
| 21 | + </ul> |
| 22 | + </nav> |
| 23 | + </header> |
| 24 | + <main> |
| 25 | + <section id="send-money"> |
| 26 | + <h2>Send Money</h2> |
| 27 | + <form> |
| 28 | + <label for="recipient">Recipient:</label> |
| 29 | + <input type="text" placeholder="Enter Recipient name" id="recipient" name="recipient" required> |
| 30 | + <label for="email">Email:</label> |
| 31 | + <input type="email" placeholder="Enter email" id="email" name="email" required> |
| 32 | + <label for="amount">Amount:</label> |
| 33 | + <input type="number" placeholder="Enter Amount" id="amount" name="amount" required> |
| 34 | + <button type="submit" id="send-money-btn">Send</button> |
| 35 | + </form> |
| 36 | + </section> |
| 37 | + |
| 38 | + <section id="add-user"> |
| 39 | + <h2>Add User</h2> |
| 40 | + <form> |
| 41 | + <label for="username">Username:</label> |
| 42 | + <input type="text" placeholder="Enter your username" id="username" name="username" required> |
| 43 | + <label for="email">Email:</label> |
| 44 | + <input type="email" placeholder="Enter your email" id="email" name="email" required> |
| 45 | + <label for="balance">Initial balance:</label> |
| 46 | + <input type="number" placeholder="Enter amount" id="balance" name="balance" required> |
| 47 | + <button type="submit" id="add-user-btn">Add User</button> |
| 48 | + </form> |
| 49 | + </section> |
| 50 | + |
| 51 | + <section id="user-add"> |
| 52 | + <h2>User Details</h2> |
| 53 | + <table> |
| 54 | + <thead> |
| 55 | + <tr> |
| 56 | + <th>Recipient</th> |
| 57 | + <th>Email</th> |
| 58 | + <th>Amount</th> |
| 59 | + </tr> |
| 60 | + </thead> |
| 61 | + <table id="user-list"> |
| 62 | + <tbody> |
| 63 | + <!-- User rows will be added here dynamically --> |
| 64 | + </tbody> |
| 65 | + </table> |
| 66 | + |
| 67 | + </table> |
| 68 | + <button id="clear-user">Clear Users</button> |
| 69 | + </section> |
| 70 | + |
| 71 | + <section id="transaction-history"> |
| 72 | + <h2>Transaction History</h2> |
| 73 | + <table> |
| 74 | + <thead> |
| 75 | + <tr> |
| 76 | + <th>Date</th> |
| 77 | + <th>Recipient</th> |
| 78 | + <th>Email</th> |
| 79 | + <th>Amount</th> |
| 80 | + </tr> |
| 81 | + </thead> |
| 82 | + <tbody> |
| 83 | + <!-- Transaction history rows will be added dynamically by JavaScript --> |
| 84 | + </tbody> |
| 85 | + </table> |
| 86 | + <button id="clear-history">Clear History</button> |
| 87 | + </section> |
| 88 | + </main> |
| 89 | + |
| 90 | + <!-- About section --> |
| 91 | + <section id="about"> |
| 92 | + <h2>About Our Bank</h2> |
| 93 | + <div class="about-content"> |
| 94 | + <div class="about-text"> |
| 95 | + <p>We are a trusted financial institution that has been serving our customers for over 50 years. We offer a wide range of banking services including checking accounts, savings accounts, loans, and more.</p> |
| 96 | + <p>Our mission is to provide our customers with the highest level of customer service and support. We believe that everyone should have access to the financial tools they need to achieve their goals, which is why we offer competitive rates and fees.</p> |
| 97 | + <p>At our bank, we prioritize security and privacy. We use the latest technology and security measures to ensure that our customers' information is always safe and secure.</p> |
| 98 | + </div> |
| 99 | + <div class="about-image"> |
| 100 | + <img src="Assets/img/Bank.jpg" alt="About Us Image"> |
| 101 | + </div> |
| 102 | + </div> |
| 103 | + </section> |
| 104 | + |
| 105 | + <!-- Contact form section --> |
| 106 | + <section id="contact"> |
| 107 | + <h2>Contact Us</h2> |
| 108 | + <form action="submit-form.php" method="POST"> |
| 109 | + <div class="form-group"> |
| 110 | + <label for="name">Name:</label> |
| 111 | + <input type="text" id="name" name="name" required> |
| 112 | + </div> |
| 113 | + <div class="form-group"> |
| 114 | + <label for="email">Email:</label> |
| 115 | + <input type="email" id="email" name="email" required> |
| 116 | + </div> |
| 117 | + <div class="form-group"> |
| 118 | + <label for="subject">Subject:</label> |
| 119 | + <input type="text" id="subject" name="subject" required> |
| 120 | + </div> |
| 121 | + <div class="form-group"> |
| 122 | + <label for="message">Message:</label> |
| 123 | + <textarea id="message" name="message" required></textarea> |
| 124 | + </div> |
| 125 | + <button type="submit">Submit</button> |
| 126 | + </form> |
| 127 | + </section>\ |
| 128 | + |
| 129 | + <footer> |
| 130 | + <p>Design & Developed By Shubhanshu✌️<br>© 2023 GRIP Bank. All rights reserved.</p> |
| 131 | + </footer> |
| 132 | + <script src="script.js"></script> |
| 133 | +</body> |
| 134 | +</html> |
0 commit comments