Full Stack Developement Practical Slips Programs Slip 1 Create an HTML form for Login and write a JavaScript to validate email ID and Password using Regular Expression. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Login Form</title> <style> /* Add some basic styling for the form */ body { font-family: Arial, sans-serif; } form { max-width: 300px; margin: 0 auto; } input[type="text"], input[type="password"], input[type="submit"] { width: 100%; padding: 10px; margin: 5px 0; border: 1px solid #ccc; box-siz...
Comments
Post a Comment
hey