console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Example Form</title>
</head>
<body>
<form action="/submit-form" method="post">
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="Enter your username"><br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Enter your password"><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email"><br><br>
<label for="age">Age:</label>
<input type="number" id="age" name="age" placeholder="Enter your age" min="0" max="120"><br><br>
<label for="gender">Gender:</label><br>
<label>
<input type="radio" id="male" name="gender" value="male">
Male
</label>
<label>
<input type="radio" id="female" name="gender" value="female">
Female
</label><br><br>
<label for="subscribe">Subscribe to newsletter:</label>
<input type="checkbox" id="subscribe" name="subscribe" value="newsletter"><br><br>
<label for="profile-picture">Upload profile picture:</label>
<input type="file" id="profile-picture" name="profile-picture"><br><br>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
</body>
</html>