| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/members.playwithrae.com/public_html/custom_assets/options/ |
Upload File : |
<?php
session_start();
include('includes/functions.php');
// INCLUDE THE PAGE NAME FOR TRACKING
$pagename = 'login';
get_header($pagename); ?>
<div class='wrapper'>
<div class='row'>
<div class='col-lg-12'>
<div class='brand text-center'>
<div class='logo-icon'>
<img src="assets/images/logo.png" alt="Zuzana Designs" />
<h1><i class='fa fa-user'></i> Webmaster Login</h1>
</div>
</div>
</div>
</div>
<div class='row'>
<div class='col-lg-12'>
<?php
if( isset($_GET['msg']) ){
if($_GET['msg'] == 'login_invalid'){
?>
<div class="alert alert-danger">
<h4><strong>Login</strong> Failed.</h4>
<p>The username and password sent are not valid.</p>
</div>
<?php
}//if login_invalid
if($_GET['msg'] == 'restricted'){
?>
<div class="alert alert-danger">
<h4><strong>Login</strong> Failed.</h4>
<p>Please make sure you login to access that page.</p>
</div>
<?php
}//if restricted
}
?>
<?php
if( isset($_GET['action']) ){
if($_GET['action'] == 'logout'){
session_destroy();
?>
<div class="alert alert-success">
<h4><strong>Logout</strong> Success.</h4>
</div>
<?php
}//if action = logout
}
?>
<form action="index.php" method="POST">
<fieldset class='text-center'>
<legend>ZD Template #03</legend>
<div class='form-group'>
<input name="zd_username" class='form-control' placeholder='Username' type='text' value="" />
</div>
<div class='form-group'>
<input name="zd_password" class='form-control' placeholder='Password' type='password' value="" />
</div>
<div class='text-center'>
<input type="submit" class="btn btn-default" value="Login" name="zd_login_process">
</div>
<div class='text-center'>
<p style="color:#FFF; margin-top:15px;">Default username/password is:<br/> admin / zuzanadesigns</p>
</div>
</fieldset>
</form>
</div>
</div>
</div>
<?php get_footer(); ?>