0byt3m1n1
Path:
C:
/
wamp64
/
www
/
test
/
[
Home
]
File: signup.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Signup Form</title> </head> <body> <h2>Signup Form</h2> <form action="signup.php" method="post"> <label for="username">Username:</label><br> <input type="text" id="username" name="username" required><br><br> <label for="password">Password:</label><br> <input type="password" id="password" name="password" required><br><br> <input type="submit" value="Sign Up"> </form> </body> </html>