
<style type="css/text">
textarea
{
font-family: Courier New, Courier, monospace;
font-size: 14px;
color: #000000;
border:double;
border-color:#3C3C3C;
background-color:#60D5C9;
}
hr
{
background-color: #33CCCC;
}
</style>
<?php
$passe = md5($_POST['passentry']);
$usere = md5($_POST['userentry']);
$self= 'https://thefinalstring.com';
$pass = '81dc9bdb52d04dc20036dbd8313ed055';
$user = '81dc9bdb52d04dc20036dbd8313ed055';
?>
<center>
<body text=#336666 bgcolor="#0000000" style="font-family: Courier New, Courier, monospace;
font-size: 18px;" oncontextmenu="return false;">
<form method="post">
Username:<input type="text" name="userentry" /><br>
Password:<input type="password" name="passentry" /> <br>
<input type="submit" value="Login" name="Login" />
</form></center>
</body>
<?php
echo base64_decode("PGNlbnRlcj48Zm9udCBjb2xvcj1cInJlZFwiPiBDUkVBVEVEIEJZIE5FUk8gQCA8YSBocmVmPSJodHRwOi8vdGhlZmluYWxzdHJpbmcuY29tIj4gVGhlIEZpbmFsIFN0cmluZyEgPC9hPjwvZm9udD48L2NlbnRlcj4NCg==");
?>
<?php
if (isset($_POST['Login']) && $passe===$pass && $usere===$user )
{
header('location:'.$self);
}
if(isset($_POST['Login']) && $passe== " ")
{ echo "<br><font color=red><b>Please enter a password</font></b><br>"; }
if (isset($_POST['Login']) && $usere== " ")
{
echo "<br><font color=red><b>Please enter a username</b><br></font>";
}
?>
<?php
$self = basename($_SERVER["PHP_SELF"]);
$username = $_POST['user'];
$password = $_POST['pass'];
if (isset($_POST['login'])){
if($username=='realuser' && $password=='password'
{
echo "Login Correct";
}else{
echo "Failed Login";
}
}
?>
<html>
<!--Form, still needs to be configured.-->
<title="Login">
<body>
<form method="post" action="<?=$self?>">
<b>Username</b><input type="text" name="user" value="Username" onClick="this.value=''"><br>
<b>Password:</b><input type="password" name="pass" value=""> <br>
<input type="submit" value="login" name="login">
</form>
</body>
</html>
<!--/>
Copyright © 2026, NextGenUpdate.
All Rights Reserved.