Account doesn't exist?

azdemigod

New Member
Jun 2, 2015
5
2
I register my account on my server. When I log off and try to log back in it says account doesn't exist. I look in my database and my account is there. I looked around and found a topic saying it's the login php. This is the only login.php i found in my folder under vue/hk

I'm running on the Vue Skin, RevCMS, and Silverware Emulator. From what I read I'm not the only one with this problem on this skin.

EDIT: ill post the login.php file wotn let me put in code because of hidden url?
 
Code:
<!DOCTYPE html>
<html lang="en">
<html>
    <head>
        <!-- Meta Tags -->
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta name="description" content="">
        <meta name="author" content="">
       
        <!-- Link Tags -->
        <link rel="shortcut icon" href="../../docs-assets/ico/favicon.png">
       
        <!-- CSS Includes -->
        <link href="assets/bootstrap/css/bootstrap.css" rel="stylesheet">
        <link href="signin.css" rel="stylesheet">
    </head>
   
<body>

<center><?php echo $template->form->error; ?></center>
    <form class = "form-signin" method="post" action="index.php?url=dashboard">
        <center><h2 class="form-signin-heading">{hotelName}: Secure Panel</h2></center>
            <form class = "form-signin" method="post" action="index.php?url=login">
                <input type="text" placeHolder="Username" name="username" size="5" maxlength="8" class = "form-control "class="login"/>
                    <input type="password" placeHolder="Password" name="password" class = "form-control"class="login"/>
                <input type="submit" class="btn btn-lg btn-primary btn-block" value="Login" name="login" class = "form-control "class="login"/>
            </form>
        <?php include('includes/footer.php'); ?>
    </body>
</html>
 

Users who are viewing this thread

Top