Reference no: EM133930346
Assignment:
Make a web page using html,CSS. It should be made in accordance to the following:
1. In `index.html` make Form that uses POST to submit its data to the URL `/account. The form should have the following controls:
a. Account Username, which should be an email address and should get the focus when the page loads
b. Current Password
c. New Password (must be 16-256 characters in length and use letters, numbers, and symbols)
d. Confirm New Password (must be 16-256 characters in length and use letters, numbers, and symbols)
e. Submit and Clear buttons
2. Choose the most appropriate type of input control for each of the above.
3. Create labels for each of the input controls above.
4. Set all necessary input attributes for the controls above. Some attributes to consider: id, name, minlength, maxlength, pattern, placeholder, required, size. NOTE: not all attributes are required for every control, so pick only what is needed.
5. Use CSS to style your form and input controls so that they are easy to see and use. You may use own styles in `styles.css` or use a CSS framework like Bootstrap. The form must look professional so that users will trust it.