Untitled
unknown
plain_text
2 years ago
1.0 kB
1
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Login or Register</title> </head> <body> <h1>Login</h1> <form method="post" action="/login"> <label for="username">Username:</label> <input type="text" id="username" name="username" required><br><br> <label for="password">Password:</label> <input type="password" id="password" name="password" required><br><br> <button type="submit">Login</button> </form> <br><br> <h1>Register</h1> <form method="post" action="/register"> <label for="username">Username:</label> <input type="text" id="username" name="username" required><br><br> <label for="password">Password:</label> <input type="password" id="password" name="password" required><br><br> <label for="email">Email:</label> <input type="email" id="email" name="email" required><br><br> <button type="submit">Register</button> </form> </body> </html>
Editor is loading...