HEX
Server: LiteSpeed
System: Linux in-mum-web921.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
User: u590867752 (590867752)
PHP: 8.2.33
Disabled: NONE
Upload Files
File: /home/u590867752/domains/himanshuartinstitute.com/public_html/wall/user/login.php
<?php
session_start();

if(isset($_SESSION['wall_user']) && !empty($_SESSION['wall_user'])){
    header("location:user-view-wall.php");
    exit;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>

<title>Login to HAI Wall | Access Your Art Account</title>
<meta name="description" content="Login to your HAI Wall account to manage your profile, upload artwork, and connect with the Himanshu Art Institute art community." />
<meta name="keywords" content="hai wall login, art account login, artist login page, access art profile, himanshu art institute login, art community login India" />
<meta name="robots" content="noindex, follow">

<meta property="og:image" content="https://www.himanshuartinstitute.com/wall/bcknds/hai-wall.jpg">
<meta property="og:title" content="Login to HAI Wall">
<meta property="og:description" content="Access your HAI Wall account and continue your creative journey.">
<meta property="og:url" content="https://himanshuartinstitute.com/wall/user/login.php">
<meta property="og:type" content="website">

<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="../bcknds/css/wall-register.css" rel="stylesheet">
</head>

<body class="loginpge">
<div class="register-container">
<div class="register-card">
<a href="https://himanshuartinstitute.com/wall/index.php" class="reglogo"><img src="../bcknds/himanshu-art-institute.jpg" alt="HAI Wall, Himanshu Art Institute" title="HAI WALL"></a>
<h2>Continue Your Creativity</h2>
<?php
if(isset($_GET['error']) && $_GET['error']=="account_blocked"){
    echo "<div class='bloklogin'>Your Account is Temporarily Blocked </div>";
}
?>
<form method="post" action="/wall/bcknds/login-check.php">
<div class="form-group">
<input type="text" name="username" placeholder="Username" required>
</div>
<div class="form-group">
<input type="password" name="password" placeholder="Password" required>
</div>
<button type="submit" class="register-btn">Login</button>
</form>
<br>
<a class="hvelgn" href="forgot-password.php"> Forgot Password </a>  |  <a class="hvelgn" href="register.php"> Create New Account </a>
</div>
</div>


<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>

<script>

const params = new URLSearchParams(window.location.search);

if(params.get("reset")=="success"){
Swal.fire({
icon:'success',
title:'Password Updated',
text:'Please login with your new password'
});
}

if(params.get("error")=="password"){
Swal.fire({
icon:'error',
title:'Wrong Password',
text:'Please enter correct password'
});

}

if(params.get("error")=="user"){

Swal.fire({
icon:'warning',
title:'User Not Found',
text:'Username does not exist'
});

}

if(params.get("error")=="already_logged_in"){

Swal.fire({
icon:'warning',
title:'Already Logged In',
text:'Please Logout First, then Login with Another Account'
});

}

if(params.get("reset")=="mail_sent"){
Swal.fire({
icon:'success',
title:'Email Sent',
text:'Password reset link has been sent to your email'
});
}

</script>
</body>
</html>