signin
if(isset($_POST['customer_login'])){
$password = trim($_POST['customer_pwd']);
if ($password == 'cowboy') {
/* if the password is correct they will be redirected to about us.html
if password is not correct the get the below error msg */
header('Location: https://whitehorseapparel.com/');
} else {
//edit your text for user incorrect password
$errors = 'Incorrect password';
}
}
?--> Customer Signin
ONCE YOU ARE APPROVED TO BUY WHOLESALE YOU WILL RECEIVE A PASSWORD TO ENTER THE SITE |
CUSTOMER SIGN IN
'. $errors . '' ; } } ?> |
Connect