✏️ 正在编辑: change_password.php
路径:
/home/llpreacharge/public_html/MLM/change_password.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<html> <head> <title>Change Password</title> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- Admin CSS File Link --> <link rel="stylesheet" href="css/style2.css"> <link rel="stylesheet" href="css/mediaStyle.css"> <!-- Font Awesome Icone --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <style> .div1{ background:#f7f7f7; width:50%; height:500px; float:right; text-align:center; padding-top:50px; } .div1 i{ font-size:300px; color:green; margin:0 10px; } .div1 input{ width:90%; height:55px; margin:10px; padding:2px 10px; border-radius:5px; border:1px solid green; font-size:19px; } input[type=submit]{ background:green; color:white; font-size:30px; transition:1s; } input[type=submit]:hover{ background:white; color:green; border:1px solid green; cursor:pointer; transition:1s; } @media(max-width:768px) { .div1{ width:100%; height:auto; } .nav,.container{ height:auto; } } </style> </head> <body> <!--Header Divison--> <?php require'header.php'; ?> <!--Container Division--> <div class="container"> <?php include'menu.php'; ?> <div class="content"> <div class="head"> <div class="title"><p>Change Password:-</p></div> <div class="msg"><marquee>This Is Test Message</marquee></msg> </div><hr> <div class="data-content"> <form method="post"> <div class="div1"> <i class="fa fa-lock"></i> </div> <div class="div1"> <input type="text" name="oldPwd" placeholder="Old Password..."> <input type="text" name="newPwd" placeholder="New Password..."> <input type="text" name="cNewPwd" placeholder="Confirm New Password..."> <input type="submit" name="submit" value="Submit" > </div> </form> </div> </div> </div> <?php require'footer.php'; ?> </body> </html>
💾 保存文件
← 返回文件管理器