-
Notifications
You must be signed in to change notification settings - Fork 85
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
[BUG] : alt, aria-label, title, rel attributes in Form Section and Social Links Section and Other Issues in Some Files #329
Comments
Hello NarendraKoya999, thanks for opening a issue, your contribution is valuable to us. The maintainers will review this issue and provide feedback as soon as possible. |
Hi @Abhirup-02 . Kindly Review on this Issue as soon as Possible |
Hi @Abhirup-02 . Kindly Take a Review on this ISSUE as soon as Possible. |
Debaditya-Som
added a commit
to Debaditya-Som/Resourcio_Community-Website
that referenced
this issue
Sep 11, 2023
Fixed issue: Resourcio-Community#329
I have given a PR: #354 regarding this Issue |
zeitgeistxx
added a commit
that referenced
this issue
Sep 11, 2023
Fix Issue #329 : Added Missing Alt Attribute in Profile.jsx
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
Describe the bug:
alt, aria-label, title, rel attributes in Form Section and Social Links Section and Other Issues in Some Files
src/components/profile/profile.jsx File , IT has an Image Element but not add alt attribute
src/components/footer/footer.jsx File , Must need to add aria-label, title, rel attributes to Respective All Social Icons in Footer Section Area.
src/scenes/login/login.jsx File , Must need to add aria-label and aria-labelledby attributes to 2 Form Sections.
Expected behavior:
We can expect from these changes like proper accessibility and screen reader related Issues Solved using aria-label, target, rel attributes
Actual behavior:
The above Issues are existed in Multiple Files
Reproduction Steps
Steps to reproduce the behavior:
'Footer Section'
4. See error on
Respective Social Icons have no title(Tooltip) along with accessibility and screen readers Validations are Missing`Expected result:
A clear and concise description of what you expected to happen at each step.
Actual result:
A clear and concise description of what actually happened at each step.
Screenshots
If applicable, add screenshots to help explain your problem.
Additional Information
Device (please complete the following information):
Additional context:
Add any other context about the problem here.
aria-label attribute
provides a way to place a descriptive text label on an object, such as a link, when there are no elements visible on the page that describe the object. If descriptive elements are visible on the page, the aria-labelledby attribute should be used instead of aria-label.title attribute
gives users an important indication as to where they will be directed to when they click on a link. If the user hovers with the mouse over a link reference, the title text, which was defined in the attribute, will be displayed.rel attribute
specifies the relationship between the current document and the linked document. Only used if the href attribute is present.alt attribute
specifies an alternate text for an image, if the image cannot be displayed. The alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader).The text was updated successfully, but these errors were encountered: