Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Registration</title> <link rel="stylesheet" href="css/styles.css"> </head> <body> <!-- Registration Form --> <section class="registration"> <h2>Register</h2> <form id="registrationForm"> <div class="input-container"> <label for="username">Username:</label> <input type="text" id="username" name="username" required> </div> <div class="input-container"> <label for="email">Email:</label> <input type="email" id="email" name="email" required> </div> <div class="input-container"> <label for="password">Password:</label> <input type="password" id="password" name="password" required> </div> <div id="error-message" style="color: red;"></div> <button type="submit">Register</button> </form> </section> <script src="js/script.js"></script> </body> </html>
Leave a Comment