-
-
Notifications
You must be signed in to change notification settings - Fork 407
Manchester | 26-ITP-Jan | Abdu Mussa | Sprint 2 | Form-Controls #1026
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
…with validity requirement, used radio input type for the colour and size, used break for the list for accessibility, used fieldset for list of same types
✅ Deploy Preview for cyf-onboarding-module ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Form-Controls/index.html
Outdated
| <p> | ||
| <div> | ||
| <label for="name">NAME *</label> <!--write customer's name input--> | ||
| <input type="text" name="name" id="name" minlength="2" maxlength="20" required> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you think of a better way to determine what a valid name is
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I researched more and I came up with some update but am not sure it is good enough.
Form-Controls/index.html
Outdated
| <p> | ||
| <div> | ||
| <label for="email">Email *</label> <!-- customer's email --> | ||
| <input type="email" name="email" id="email" required> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also think of or research for a better way to determine what a valid email is
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i did some update but am not sure it is well or not
A-O-Emmanuel
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have left some comments.

Manchester | 26-ITP-Jan | Abdu Mussa | Sprint 2 | Form-Controls
##Learners, PR Template
##Self checklist
##Changelist
1.added name and email label and input
2.added list for colour and size with label and radio input
3.categorised the list with two different part of fieldset
4.added submit button
A form using html form and created semantic elements and added labels with list and name and email with input elements, checked the form with lighthouse it's accessibility, created fieldset and legend to manage different part of the form with there similarity.
##Questions
N/A