Admin Page and more

This commit is contained in:
ry1015
2014-11-14 15:41:00 -08:00
parent 62d49e37e3
commit 5c25685b2c
20 changed files with 223 additions and 89 deletions

View File

@@ -0,0 +1,49 @@
F8L Exception -- 15 Functions:
1. Add New User
Add New Account (checking/savings)
Add New Loan
Add New CreditCard
2. Change Password
Reset Password
3. View Account Statement (checking/savings)
4. Overdraft Fee (Trigger)
charge $25 fee if balance dips below zero
5. ATM Fee (Trigger)
charge $3 fee every time function ATMwithdraw is used
6. Late Payment (Trigger)
charge $10 fee for every late payment
7. Low Balance (Admin - Stored Procedure)
generate a list of users with accounts that have balances <$20
8. Daily Login (Admin - Stored Procedure)
generate a list of users who logged in today
9. Loyalty Program (Admin - Stored Procedure)
generate a list of users with more than $10,000 combined balance
and have been customer for over 1 year
10. Annual Credit Card Fee (Trigger)
charge a $20 per year fee to all credit card accounts
11. No cc w/ $> (Admin)
examines all accounts.
if account is greater than $5,000, offer a credit card.
12. Archive Transaction table (Stored Procedure)
manually run a procedure that archives transactions older than 7 days
13. Delete Inactive Checking/Savings Accounts (Admin)
delete all Ch/Sa accounts that have $0 balance and have not been accessed in 60 days
this delete will cascade through the Transactions table
14. Increase Credit Card Limit (Admin)
15. Daily Transactions Tally (Admin)
show the sum of all deposits and withdraws for one day

45
f8l_exception/admin.php Normal file
View File

@@ -0,0 +1,45 @@
<?php
include 'includes/inc_header.php';
include 'includes/inc_validateInput.php';
include 'includes/inc_validateLogin.php';
echo <<<_END
<!-- F8L Exception Online Bank | Admin Login -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>F8L Exception Online Bank | Admin Login</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<link rel = 'stylesheet' href='styles.css' type='text/css'></link>
</head>
<body>
<hr />
<h1>Admin Login</h1>
_END;
global $errorMessage;
$errorCount = 0;
$errorMessage = $userName = $password = "";
if (isset($_POST['Submit'])){
$userName = validateInput($_POST['userName'],"User Name");
$password = validateInput($_POST['password'],"Password");
//Check if there is an error on userName and/or password. If not, go to admin home page.
if ($errorMessage != ""){
header("Location: http://mywebsite.localdomain/cs157a/cs157AOnlineBanking/f8l_exception/admin_home.php");
exit();
}
}
echo <<<_END
<form method="POST" action="admin.php">$errorMessage
<p>User Name <input type="text" name="userName" /></p>
<p>Password <input type="password" name="password" /></p>
<p><input type="submit" name="Submit" value="Log in" /></p>
</form>
_END;
?>

View File

@@ -0,0 +1,44 @@
<?php
include 'includes/inc_header.php';
echo <<<_END
<!-- F8L Exception Online Bank | Admin Home -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>F8L Exception Online Bank | Admin Home</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<link rel = 'stylesheet' href='styles.css' type='text/css'></link>
</head>
<body>
<h1>Admin Home</h1>
<hr />
_END;
echo <<<_END
<form action="admin_home.php" method="post">
<select name="view">
<option value=""></option>
<option value="lowBalance">Low Balance Account</option>
<option value="increaseLimit">Increase Credit Limit</option>
<option value="offerCredit">Offer Credit</option>
</select>
<input type="submit" value="View">
</form>
_END;
if (isset($_POST['view'])){
if ($_POST['view'] == 'lowBalance'){
echo "low balance!";
} elseif ($_POST['view'] == 'increaseLimit'){
echo "increase limit!";
} elseif ($_POST['view'] == 'offerCredit'){
echo "offer a credit card!";
}
}
function viewLowBalance(){
}
?>

View File

@@ -1,5 +1,3 @@
<?php
session_start(); ?>
<!-- F8L Exception Online Bank | Change Password --> <!-- F8L Exception Online Bank | Change Password -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -8,11 +6,14 @@ session_start(); ?>
<head> <head>
<title>F8L Exception Online Bank | Change Password</title> <title>F8L Exception Online Bank | Change Password</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<?php include 'includes/inc_header.php'; ?> <?php
<h1>Change Password</h1><hr /> include 'includes/inc_header.php';
?>
</head> </head>
<body> <body>
<hr />
<h1>Change Password</h1>
<?php <?php
include 'includes/inc_validatePassword.php'; include 'includes/inc_validatePassword.php';
include 'includes/inc_validateInput.php'; include 'includes/inc_validateInput.php';
@@ -53,7 +54,7 @@ function displayForm($userName) {
<br /><br /> <br /><br />
<?php <?php
include 'includes/inc_text_menu.php';
} }
$showForm = TRUE; $showForm = TRUE;

View File

@@ -1,5 +1,3 @@
<?php
session_start(); ?>
<!-- F8L Exception Online Bank | Deposit --> <!-- F8L Exception Online Bank | Deposit -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -9,10 +7,11 @@ session_start(); ?>
<title>F8L Exception Online Bank | Deposit</title> <title>F8L Exception Online Bank | Deposit</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<?php include 'includes/inc_header.php'; ?> <?php include 'includes/inc_header.php'; ?>
<h1>Deposit</h1><hr />
</head> </head>
<body> <body>
<hr />
<h1>Deposit</h1>
<?php <?php
include 'includes/inc_validateInput.php'; include 'includes/inc_validateInput.php';
include 'includes/inc_validateLogin.php'; include 'includes/inc_validateLogin.php';
@@ -104,7 +103,6 @@ else {
echo $errorMessage."<br />"; echo $errorMessage."<br />";
} }
} }
include 'includes/inc_text_menu.php';
?> ?>
</body> </body>

View File

@@ -1 +1,19 @@
<a href="index.php"><img src="artwork/f8l_exception_logo.png" alt="F8L Exception Online Bank"></a> <link rel = 'stylesheet' href='styles.css' type='text/css'>
<center><a href="index.php"><img src="artwork/f8l_exception_logo.png" alt="F8L Exception Online Bank"></a></center>
<?php
session_start();
if (isset($_SESSION['login'])){
$user = $_SESSION['login'];
$loggedin = TRUE;
$userstr = " ($user)";
} else {
$loggedin = FALSE;
}
$loggedin = FALSE;
if ($loggedin){
include 'includes/inc_loggedin_text_menu.php';
} else {
include 'includes/inc_text_menu.php';
}
?>

View File

@@ -6,10 +6,10 @@
<a href="my_accounts.php">My Accounts</a> | <a href="my_accounts.php">My Accounts</a> |
<a href="deposit.php">Deposit</a> | <a href="deposit.php">Deposit</a> |
<a href="withdraw.php">Withdraw</a> | <a href="withdraw.php">Withdraw</a> |
<a href="ransfer.php">Transfer</a> | <a href="transfer.php">Transfer</a> |
<a href="view_statement.php">View Statement</a> <a href="view_statement.php">View Statement</a>
<br /> <br />
<a href="new_loan.php">New Loan</a> | <a href="new_loan.php">New Loan</a> |
<a href="ew_account.php">New Account</a> | <a href="new_account.php">New Account</a> |
<a href="loan_payment.php">Make Loan Payment</a> <a href="loan_payment.php">Make Loan Payment</a>
<br /> <br />

View File

@@ -1,5 +1,5 @@
<?php <?php
session_start(); ?> //session_start(); ?>
<!-- F8L Exception Online Bank | Home --> <!-- F8L Exception Online Bank | Home -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -11,22 +11,6 @@ session_start(); ?>
<?php include 'includes/inc_header.php'; ?> <?php include 'includes/inc_header.php'; ?>
</head> </head>
<?php
if (isset($_SESSION['user'])){
$user = $_SESSION['user'];
$loggedin = TRUE;
$userstr = " ($user)";
} else {
$loggedin = FALSE;
}
if ($loggedin){
include 'includes/inc_loggedin_text_menu.php';
} else {
include 'includes/inc_text_menu.php';
}
?>
<body> <body>
<hr /> <hr />
<h1>Welcome to F8L Exception Online Bank!</h1> <h1>Welcome to F8L Exception Online Bank!</h1>

View File

@@ -1,5 +1,3 @@
<?php
session_start(); ?>
<!-- F8L Exception Online Bank | Make a Loan Payment --> <!-- F8L Exception Online Bank | Make a Loan Payment -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -9,10 +7,11 @@ session_start(); ?>
<title>F8L Exception Online Bank | Make a Loan Payment</title> <title>F8L Exception Online Bank | Make a Loan Payment</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<?php include 'includes/inc_header.php'; ?> <?php include 'includes/inc_header.php'; ?>
<h1>Make a Loan Payment -- Under construction</h1><hr />
</head> </head>
<body> <body>
<hr />
<h1>Make a Loan Payment -- Under construction</h1>
<?php <?php
include 'includes/inc_validatePassword.php'; include 'includes/inc_validatePassword.php';
include 'includes/inc_validateEmail.php'; include 'includes/inc_validateEmail.php';
@@ -61,7 +60,6 @@ function displayForm($First, $Last, $Email, $Login) {
<br /><br /> <br /><br />
<?php <?php
include 'includes/inc_text_menu.php';
} }
$showForm = TRUE; $showForm = TRUE;
@@ -116,7 +114,6 @@ else {
mail($Email,$subject,$message,"From: $from\n"); mail($Email,$subject,$message,"From: $from\n");
echo "<p>" . $First . "\nyour account has been created. Welcome to PVault!.</p><br /><br />\n"; echo "<p>" . $First . "\nyour account has been created. Welcome to PVault!.</p><br /><br />\n";
include 'includes/inc_text_menu.php';
} }
?> ?>

View File

@@ -1,5 +1,5 @@
<?php <?php
session_start(); ?> //session_start(); ?>
<!-- F8L Exception Online Bank | Login --> <!-- F8L Exception Online Bank | Login -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -8,11 +8,14 @@ session_start(); ?>
<head> <head>
<title>F8L Exception Online Bank | Login</title> <title>F8L Exception Online Bank | Login</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<?php include 'includes/inc_header.php'; ?> <?php
<h1>Login</h1><hr /> include 'includes/inc_header.php';
?>
</head> </head>
<body> <body>
<hr />
<h1>Login</h1>
<?php <?php
include 'includes/inc_validateInput.php'; include 'includes/inc_validateInput.php';
include 'includes/inc_validateLogin.php'; include 'includes/inc_validateLogin.php';
@@ -31,7 +34,7 @@ function displayForm() {
<br /><br /> <br /><br />
<?php <?php
include 'includes/inc_text_menu.php';
} }
$ShowForm = TRUE; $ShowForm = TRUE;

View File

@@ -1,5 +1,3 @@
<?php
session_start(); ?>
<!-- PVault | Logout --> <!-- PVault | Logout -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -15,7 +13,6 @@ session_start(); ?>
session_unset(); session_unset();
session_destroy(); session_destroy();
?><script language="JavaScript">window.location = "index.php";</script><?php ?><script language="JavaScript">window.location = "index.php";</script><?php
include 'includes/inc_text_menu.php';
?> ?>
</body> </body>

View File

@@ -1,5 +1,3 @@
<?php
session_start(); ?>
<!-- F8L Exception Online Bank | My Accounts --> <!-- F8L Exception Online Bank | My Accounts -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -9,10 +7,11 @@ session_start(); ?>
<title>F8L Exception Online Bank | My Accounts</title> <title>F8L Exception Online Bank | My Accounts</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<?php include 'includes/inc_header.php'; ?> <?php include 'includes/inc_header.php'; ?>
<h1>My Accounts</h1><hr />
</head> </head>
<body> <body>
<hr />
<h1>My Accounts</h1>
<?php <?php
function showAccounts($userName) { function showAccounts($userName) {
include 'includes/inc_dbConnect.php'; include 'includes/inc_dbConnect.php';
@@ -56,8 +55,6 @@ $userName = $_SESSION['login'];
echo "User Name: ".$userName."<br />"; echo "User Name: ".$userName."<br />";
showAccounts($userName); showAccounts($userName);
include 'includes/inc_text_menu.php';
?> ?>
</body> </body>

View File

@@ -1,5 +1,3 @@
<?php
session_start(); ?>
<!-- F8L Exception Online Bank | Open New Account --> <!-- F8L Exception Online Bank | Open New Account -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -9,10 +7,11 @@ session_start(); ?>
<title>F8L Exception Online Bank | Open New Account</title> <title>F8L Exception Online Bank | Open New Account</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<?php include 'includes/inc_header.php'; ?> <?php include 'includes/inc_header.php'; ?>
<h1>Open a New Account</h1><hr />
</head> </head>
<body> <body>
<hr />
<h1>Open a New Account</h1>
<?php <?php
include 'includes/inc_validateInput.php'; include 'includes/inc_validateInput.php';
include 'includes/inc_getNumberOfAccounts.php'; include 'includes/inc_getNumberOfAccounts.php';
@@ -106,7 +105,6 @@ else {
} }
} }
} }
include 'includes/inc_text_menu.php';
?> ?>
</body> </body>

View File

@@ -1,5 +1,3 @@
<?php
session_start(); ?>
<!-- F8L Exception Online Bank | New Customer --> <!-- F8L Exception Online Bank | New Customer -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -8,11 +6,14 @@ session_start(); ?>
<head> <head>
<title>F8L Exception Online Bank | Register a New Customer</title> <title>F8L Exception Online Bank | Register a New Customer</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<?php include 'includes/inc_header.php'; ?> <?php
<h1>Register a New Customer</h1><hr /> include 'includes/inc_header.php';
?>
</head> </head>
<body> <body>
<hr />
<h1>Register a New Customer</h1>
<?php <?php
include 'includes/inc_validatePassword.php'; include 'includes/inc_validatePassword.php';
include 'includes/inc_validateUserName.php'; include 'includes/inc_validateUserName.php';
@@ -57,7 +58,7 @@ function displayForm($userName,$email) {
<br /><br /> <br /><br />
<?php <?php
include 'includes/inc_text_menu.php';
} }
$showForm = TRUE; $showForm = TRUE;
@@ -106,7 +107,6 @@ else {
mail($email,$subject,$message,"From: $from\n"); mail($email,$subject,$message,"From: $from\n");
echo "<p>You have been set up as a new customer. Welcome to F8L Exception Online Bank!.</p><br /><br />\n"; echo "<p>You have been set up as a new customer. Welcome to F8L Exception Online Bank!.</p><br /><br />\n";
include 'includes/inc_text_menu.php';
} }
?> ?>

View File

@@ -1,5 +1,3 @@
<?php
session_start(); ?>
<!-- F8L Exception Online Bank | New Loan --> <!-- F8L Exception Online Bank | New Loan -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -9,10 +7,11 @@ session_start(); ?>
<title>F8L Exception Online Bank | New Loan</title> <title>F8L Exception Online Bank | New Loan</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<?php include 'includes/inc_header.php'; ?> <?php include 'includes/inc_header.php'; ?>
<h1>New Loan -- Under construction</h1><hr />
</head> </head>
<body> <body>
<hr />
<h1>New Loan -- Under construction</h1>
<?php <?php
include 'includes/inc_validatePassword.php'; include 'includes/inc_validatePassword.php';
include 'includes/inc_validateEmail.php'; include 'includes/inc_validateEmail.php';
@@ -61,7 +60,6 @@ function displayForm($First, $Last, $Email, $Login) {
<br /><br /> <br /><br />
<?php <?php
include 'includes/inc_text_menu.php';
} }
$showForm = TRUE; $showForm = TRUE;
@@ -116,7 +114,6 @@ else {
mail($Email,$subject,$message,"From: $from\n"); mail($Email,$subject,$message,"From: $from\n");
echo "<p>" . $First . "\nyour account has been created. Welcome to PVault!.</p><br /><br />\n"; echo "<p>" . $First . "\nyour account has been created. Welcome to PVault!.</p><br /><br />\n";
include 'includes/inc_text_menu.php';
} }
?> ?>

View File

@@ -1,5 +1,3 @@
<?php
session_start(); ?>
<!-- F8L Exception Online Bank | Reset Password --> <!-- F8L Exception Online Bank | Reset Password -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -9,10 +7,11 @@ session_start(); ?>
<title>F8L Exception Online Bank | Reset Password</title> <title>F8L Exception Online Bank | Reset Password</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<?php include 'includes/inc_header.php'; ?> <?php include 'includes/inc_header.php'; ?>
<h1>Reset Password</h1><hr />
</head> </head>
<body> <body>
<hr />
<h1>Reset Password</h1>
<?php <?php
include 'includes/inc_generatePassword.php'; include 'includes/inc_generatePassword.php';
include 'includes/inc_validateInput.php'; include 'includes/inc_validateInput.php';
@@ -67,7 +66,6 @@ function displayForm() {
<br /><br /> <br /><br />
<?php <?php
include 'includes/inc_text_menu.php';
} }
$ShowForm = TRUE; $ShowForm = TRUE;

14
f8l_exception/styles.css Normal file
View File

@@ -0,0 +1,14 @@
body {
width : 900px;
height : 800px;
margin : 20px auto;
background: #f8f8f8;
border : 4px solid #888;
border-radius: 40px;
-moz-border-radius :40px;
-webkit-border-radius:40px;
}
img {
padding-top: 20px;
}

View File

@@ -1,5 +1,3 @@
<?php
session_start(); ?>
<!-- F8L Exception Online Bank | Transfer --> <!-- F8L Exception Online Bank | Transfer -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -9,10 +7,11 @@ session_start(); ?>
<title>F8L Exception Online Bank | Transfer</title> <title>F8L Exception Online Bank | Transfer</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<?php include 'includes/inc_header.php'; ?> <?php include 'includes/inc_header.php'; ?>
<h1>Transfer</h1><hr />
</head> </head>
<body> <body>
<hr />
<h1>Transfer</h1>
<?php <?php
include 'includes/inc_validateInput.php'; include 'includes/inc_validateInput.php';
include 'includes/inc_validateLogin.php'; include 'includes/inc_validateLogin.php';
@@ -113,7 +112,6 @@ else {
echo $errorMessage."<br />"; echo $errorMessage."<br />";
} }
} }
include 'includes/inc_text_menu.php';
?> ?>
</body> </body>

View File

@@ -1,5 +1,3 @@
<?php
session_start(); ?>
<!-- F8L Exception Online Bank | View Statement --> <!-- F8L Exception Online Bank | View Statement -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -9,10 +7,11 @@ session_start(); ?>
<title>F8L Exception Online Bank | View Statement</title> <title>F8L Exception Online Bank | View Statement</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<?php include 'includes/inc_header.php'; ?> <?php include 'includes/inc_header.php'; ?>
<h1>View Statement -- Under construction</h1><hr />
</head> </head>
<body> <body>
<hr />
<h1>View Statement -- Under construction</h1>
<?php <?php
function displayTable() { function displayTable() {
global $Login; global $Login;
@@ -71,7 +70,6 @@ function displayTable() {
mysql_free_result($QueryResult); mysql_free_result($QueryResult);
} }
} }
include 'includes/inc_text_menu.php';
} }
$Login = ""; $Login = "";
$Login = $_SESSION['login']; $Login = $_SESSION['login'];

View File

@@ -1,5 +1,3 @@
<?php
session_start(); ?>
<!-- F8L Exception Online Bank | Withdraw --> <!-- F8L Exception Online Bank | Withdraw -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -9,10 +7,11 @@ session_start(); ?>
<title>F8L Exception Online Bank | Withdraw</title> <title>F8L Exception Online Bank | Withdraw</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<?php include 'includes/inc_header.php'; ?> <?php include 'includes/inc_header.php'; ?>
<h1>Withdraw</h1><hr />
</head> </head>
<body> <body>
<hr />
<h1>Withdraw</h1>
<?php <?php
include 'includes/inc_validateInput.php'; include 'includes/inc_validateInput.php';
include 'includes/inc_validateLogin.php'; include 'includes/inc_validateLogin.php';
@@ -104,7 +103,6 @@ else {
echo $errorMessage."<br />"; echo $errorMessage."<br />";
} }
} }
include 'includes/inc_text_menu.php';
?> ?>
</body> </body>