Replace <your_account> with your Github username and copy the links to Pull Request description:
Follow this instructions
Create HTML page with form. On form submit send form data to https://mate-academy-form-lesson.herokuapp.com/create-application
- Every field should have name attribute
- Every field should have label, which focuses input on label click
- Please add
forattribute for each andidto the field (it is important for tests)
- Please add
- Do not use tabs. Use 2 spaces for indentation
- Most of the time you want each tag in new line
- Form should have different inputs with such types:
- text
- number
- checkbox
- radio
- password
- range
- time
- color
- date
- Form should have textarea and select elements.
- You should use every of this attribute at least one time
- required
- min
- max
- minlength
- maxlength
- multiple
- The number field should have default value:
12and maximum value 100. - The email field should have placeholder value:
[email protected]. - The text fields should have disabled autocomplete.
- Add a button which submits the form.
- Add
onsubmit="onSubmit()"attribute toformtag to show form value on submit - Vertical distance between inputs should be
10px - Vertical distance between blocks with inputs should be
20px - Any other styles should be browser default
--> Don't forget to proofread your code using CHECKLIST
- You can group different input sections with fieldset tag
- Make sure you have
methodandactionattributes for form specified correctly - Add
onsubmit="onSubmit()"to form tag, not to button. It doesn’t work correctly on buttons. - Follow the code style guide
