0byt3m1n1
Path:
C:
/
wamp64
/
www
/
crop
/
Crops
/
[
Home
]
File: adminforgot.php
<!doctype html> <html lang="en"> <head> <style> body { font-family: Arial, sans-serif; background-color: #f4f4f4; } .container { width: 300px; margin: 0 auto; padding: 20px; background-color: #ffffff; border-radius: 5px; box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); } h1 { text-align: center; color: #333333; } form { margin-top: 20px; } label { display: block; margin-bottom: 5px; color: #333333; } input[type="text"], input[type="password"] { width: 100%; padding: 10px; border: 1px solid #cccccc; border-radius: 3px; } input[type="submit"] { width: 100%; padding: 10px; background-color: #007bff; color: #ffffff; border: none; border-radius: 3px; cursor: pointer; } input[type="submit"]:hover { background-color: #0056b3; } .error-message { color: #ff0000; margin-top: 10px; } </style> </head> <body style="background-color:#d3f5a4;"> <form method="POST" action="resetadmin.php"> <div class="container"> <label>Enter Your Username </label> <input class="LoginInp" type="text" placeholder="Enter the Username" name="user" required> <br> <br> <label>Enter Your New Password : </label> <input class="LoginInp" type="password" placeholder="Enter Your New Password" name="pass" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}" required> <br> <br> <label>Confirm Password : </label> <input class="LoginInp" type="password" placeholder="Confirm your password" name="password" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}" required> <br> <input class="Submit" type="submit" name="reset" value="Reset Password"> </div> </form> </body> </html>