Signup Form (Name)
HTML
Easy
2 views
Problem Description
Create a signup form for meetcode with one text input for full name.
Output Format
Print the HTML code.
Constraints
Use label and name attribute.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>meetcode signup</title>
</head>
<body>
<form action='#' method='post'>
<label>Full name <input type='text' name='full_name'></label>
<button type='submit'>Create account</button>
</form>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!