CTYPE html> <html> <head> <title>Registration Form</title> </head> <body> <h1>Registration Form</h1> <form action=”#” method=”post”> <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> <label for=”phone”>Phone:</label> <input type=”tel” id=”phone” name=”phone” required><br><br> <label for=”birthdate”>Date of Birth:</label> <input type=”date” id=”birthdate” name=”birthdate” required><br><br> <label for=”gender”>Gender:</label> <input type=”radio” id=”male”متابعة قراءة
أرشيف الكاتب:Mohamed Sayd
hey
import getpas stored_username = “myusername”stored_password = “mypassword” username = input(“Enter your username: “)password = getpass.getpass(“Enter your password: “) if username == stored_username and password == stored_password:print(“Login successful!”)else:print(“Login failed. Please try again.”)
Registration Form Registration Form Username: