Skip to content

Conversation

@danisoloo
Copy link

@danisoloo danisoloo commented Jan 17, 2026

Learners, PR Template

Self checklist

  • I have titled my PR with Region | Cohort | FirstName LastName | Sprint | Assignment Title
  • My changes meet the requirements of the task
  • I have tested my changes
  • My changes follow the style guide

Changelist

I have cahnged the given default html by my own code to make it work as recquired

I moified the Cs code by my own and improved the light house test to 100

danisoloo added 2 commits January 17, 2026 12:40
@netlify
Copy link

netlify bot commented Jan 17, 2026

Deploy Preview for cyf-onboarding-module ready!

Name Link
🔨 Latest commit cbf863e
🔍 Latest deploy log https://app.netlify.com/projects/cyf-onboarding-module/deploys/6974f71c44f7e700085c8042
😎 Deploy Preview https://deploy-preview-975--cyf-onboarding-module.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
2 paths audited
Performance: 100 (no change from production)
Accessibility: 100 (no change from production)
Best Practices: 100 (no change from production)
SEO: 91 (🟢 up 5 from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify project configuration.

@github-actions

This comment has been minimized.

@danisoloo danisoloo added the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jan 17, 2026
@github-actions

This comment has been minimized.

@github-actions github-actions bot removed the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jan 17, 2026
@danisoloo danisoloo changed the title London | 25-ITP-May | Carol Owen | Sprint 1 | Alarm Clock London | 26-ITP-Jan| Daniel Solomon| Sprint 1 | Wireframe Jan 17, 2026
@github-actions

This comment has been minimized.

4 similar comments
@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@danisoloo danisoloo added the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jan 17, 2026
@cjyuan cjyuan added Review in progress This review is currently being reviewed. This label will be replaced by "Reviewed" soon. and removed Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. labels Jan 23, 2026
Copy link
Contributor

@cjyuan cjyuan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • The Changelist section should include a brief description of the changes you made in this PR. Can you make the description more informative?

  • According to https://validator.w3.org/, there is a warning in your code.
    Can you address the warning?

Comment on lines +49 to +65
<section>
<h2>Order a T-shirt</h2>
<form>
<label for="name">Full Name:</label>
<input
type="text"
id="name"
name="name"
minlength="2"
pattern="^(?!\s*$).+"
autocomplete="name"
required
title="Name must be at least 2 characters and not just spaces."
/>
<button type="submit" aria-label="Submit T-shirt order">Submit</button>
</form>
</section>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is there a form element in the wireframe implementation?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The

element is included because it provides the functional logic for the interaction. Even in a wireframe, it serves three main purposes:

Native Validation: It enables the browser to enforce the required, minlength, and pattern rules automatically.

Accessibility: It tells screen readers that these elements are related, and it allows users to submit by pressing the "Enter" key.

Data Handling: It acts as a container that captures the input data to be sent to a server or processed by a script.

<img src="https://docs.github.com/assets/cb-55933/mw-1440/images/help/repository/readme-links.webp"
alt="Scrabble tiles spelling out README on top of papers">
<h2>What is the purpose of a README file?</h2>
<p>A README file introduces and explains a project. It usually contains instructions on how to install, use, and contribute to the project. It helps others quickly understand the purpose and usage of your code.</p>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line 22 can be better formatted as:

    <p>
      A README file introduces and explains a project. It usually contains 
      instructions on how to install, use, and contribute to the project. It 
      helps others quickly understand the purpose and usage of your code.
    </p>

To understand why, you can ask AI these questions:

  • How HTML treats multiple whitespace characters in text?
  • What's the advantage of not writing a long paragraph of text in a single line in HTML?

VSCode's "Format Document" feature can help us format our code for better readability and consistency, including breaking a long line of text into shorter lines of text.
To use the feature, right-click inside the code editor and select the option.
Please note that if there are syntax errors in the code, the "Prettier" extension may not format HTML code properly.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have updated line 22

@cjyuan cjyuan added Reviewed Volunteer to add when completing a review with trainee action still to take. and removed Review in progress This review is currently being reviewed. This label will be replaced by "Reviewed" soon. labels Jan 23, 2026
@danisoloo danisoloo added the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jan 24, 2026
@cjyuan
Copy link
Contributor

cjyuan commented Jan 24, 2026

Did you forget to push your changes to GitHub?

@cjyuan cjyuan removed the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jan 24, 2026
@cjyuan
Copy link
Contributor

cjyuan commented Jan 24, 2026

Please note that in CYF courses, the recommended way to inform the reviewer of your changes is to do both of the following:

  • Reply to their feedback.
    • In the responses, clarify how each piece of feedback was addressed to demonstrate that you've carefully reviewed the suggestions.
      • You may find the suggestions in this PR Guide useful.
    • Your response may trigger a notification (depending on the reviewer's settings), helping ensure they’re aware of the updates you’ve made.
  • Replace the "Reviewed" label by a "Needs review" label (which you have done -- great!)
    • Without this label, the reviewer would not know if your changes is ready to be reviewed.

@danisoloo danisoloo added the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jan 24, 2026
@danisoloo danisoloo added Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. and removed Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. labels Jan 24, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. Reviewed Volunteer to add when completing a review with trainee action still to take.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants