密码保护页面允许输入错误密码

问题描述

我需要帮助来获得密码保护页面,以便在我的投资组合网站上工作。当前,密码保护页面允许用户即使输入了错误密码也可以通过。有人可以协助吗?我以前没有使用PHP的经验。

下面的代码。实时网站:https://www.starchevsky.com/pwo.php

(应重定向到淀粉evsky.com/pwo.html)

<?PHP


$password = "";

if(isset($_POST['submit'])) {


$password = $_POST['password'];
header('location: http://www.starchevsky.com/pwo.html');

if($password != "design6020") {

$error['password'] = "Please re-enter the password.";

}

}

?>

<!DOCTYPE html>

<html>

<head>
      
    <Meta name="robots" content="noindex">
    <Meta charset="utf-8" />
    <Meta name="viewport" content="width=device-width,initial-scale=1.0" />
    <Meta name="description" content="Product Designer with 13 years of experience leading projects for clients large and small,including Google,Bank of America,and Chick-fil-A."/>
    <title>Tatiana Starchevsky</title>
    <link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Prata&display=swap" rel="stylesheet">
    <link rel="shortcut icon" href="img/favicon.ico" />    
    <link rel="stylesheet" href="lib/css/foundation.css" />
    <link rel="stylesheet" href="lib/css/style.css" />
    <link rel="stylesheet" href="lib/css/app.css" />
    
    <style>
 
      input[type=text] {
        border: 2px solid #ccc;
        border-radius: 4px;
        border-style:solid;
        -webkit-appearance: none;
        Box-shadow: inset 0px 0px 0px 0px red;
      }
        
      input[type=button],input[type=submit] {
        background-color: #d50634;
        border: none;
        color: #fff;
        padding: 15px 30px;
        text-decoration: none;
        margin: 4px 2px;
        border-radius: 4px;
        cursor: pointer;
      } 
      
        input:hover[type="submit"] 
        {
            background: #000;
        }
      
    </style>
    </head>

<body>

<em><?PHP if($password == "design6020") { 

    header('location: http://www.starchevsky.com/pwo.html');
?></em>
    

<!-- PROTECTED @R_304_4045@ION GOES HERE -->

<?PHP } else { ?>

   <section id="headernav"> 
      <div class="grid-x">
          <div class="cell small-6 name">
            <a href="index.html">Tatiana Starchevsky</a>
          </div>
          <div class="cell small-6">
            <ul class="menu align-right">
              <li><a ref="index.html">Projects</a></li>
              <li><a href="mailto:[email protected]">Contact</a></li>
            </ul>
          </div>
      </div>
    </section> 
    
    <section>
        <div class="grid-x align-center align-middle">
          <div class="large-6 small-6 cell">              
              
              <br><br><br><br>
              <h3>Password Protected</h3>
              <br>                
              <p>At the client's request,this project is password protected.</p>
              <small>Please <a href="mailto:[email protected]">email me</a> if you need access.</small>
              <br><br>

              
<?PHP foreach($error as $errors) {

echo "<p style='color: red;'>".$errors."</p>";

}

?>

<form name="login" action="pwo.PHP" method="post">


<p>


<input type="text" id="password" class="password" name="password" placeholder="Password" value="<?PHP if(isset($password)) { echo $password; } ?>"> <input type="submit" name="submit" value="Submit">
    
</p>

<?PHP } ?>

</form> 

          
</div>

</section> 

     

    <script src="js/vendor/jquery.js"></script>
    <script src="js/vendor/what-input.js"></script>
    <script src="js/vendor/foundation.js"></script>
    <script src="js/app.js"></script>


</body>

</html>

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)