-
Notifications
You must be signed in to change notification settings - Fork 625
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
HTML FORM #787
base: master
Are you sure you want to change the base?
HTML FORM #787
Conversation
src/index.html
Outdated
<input | ||
type="email" | ||
name="email" | ||
placeholder="[email protected]" | ||
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.
Same
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.
Not fixed
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.
fix the code style
Anastasiia hi!
When I clik commit changes in your suggestions in GH does the file update automatically:
[cid:5315be95-d085-40a3-92d4-035b420ffff5]
Do I need to make deployment again?
I did all you requested but I am not familiar with Git Hub and sometimes I get lost using it.
________________________________
From: Anastasiia Svintsova ***@***.***>
Sent: Tuesday, May 2, 2023 10:20 AM
To: mate-academy/layout_html-form ***@***.***>
Cc: Sadeni-09 ***@***.***>; Author ***@***.***>
Subject: Re: [mate-academy/layout_html-form] HTML FORM (PR #787)
@Anastasiia-Svintsova requested changes on this pull request.
________________________________
In src/index.html<#787 (comment)>:
+ <input
+ type="text"
+ name="surname"
+ autocomplete="off"
+ >
Check the code style
⬇️ Suggested change
- <input
- type="text"
- name="surname"
- autocomplete="off"
- >
+ <input
+ type="text"
+ name="surname"
+ autocomplete="off"
+ >
________________________________
In src/index.html<#787 (comment)>:
+ <input
+ type="number"
+ name="age"
+ value="12"
+ min="1"
+ max="100"
+ >
⬇️ Suggested change
- <input
- type="number"
- name="age"
- value="12"
- min="1"
- max="100"
- >
+ <input
+ type="number"
+ name="age"
+ value="12"
+ min="1"
+ max="100"
+ >
________________________________
In src/index.html<#787 (comment)>:
+ <input
+ type="date"
+ name="dateOfBirth"
+ value="mm/dd/yyyy"
+ >
Same here
________________________________
In src/index.html<#787 (comment)>:
+ value="12"
+ min="1"
+ max="100"
+ >
+ </label>
+
+ <label for="dateOfBirth" class="form-field">
+ Full date of birth:
+ <input
+ type="date"
+ name="dateOfBirth"
+ value="mm/dd/yyyy"
+ >
+ </label>
+
+ <label for="terms">I accept the term of the agreement
⬇️ Suggested change
- <label for="terms">I accept the term of the agreement
+ <label for="terms">
+ I accept the term of the agreement
________________________________
In src/index.html<#787 (comment)>:
+ <input
+ type="email"
+ name="email"
+ ***@***.***"
+ required
+ >
Same
________________________________
In src/index.html<#787 (comment)>:
+ <input
+ type="password"
+ name="password"
+ required
+ >
Check it everywhere in the code, please
________________________________
In src/index.html<#787 (comment)>:
+ </label>
+ </fieldset>
+
+ <fieldset class="groupField">
+ <legend>Registration:</legend>
+ <label for="email" class="form-field">
+ E-mail:
+ <input
+ type="email"
+ name="email"
+ ***@***.***"
+ required
+ >
+ </label>
+
+ <label for="password">
You don't need to use the for attribute for the label if the element is inside it
⬇️ Suggested change
- <label for="password">
+ <label>
________________________________
In src/index.html<#787 (comment)>:
+ </label>
+ <label>
Don't forget to add empty lines between multiline sibling blocks of HTML
⬇️ Suggested change
- </label>
- <label>
+ </label>
+
+ <label>
________________________________
In src/index.html<#787 (comment)>:
+ <label for="comments" class="form-field">
+ Comments:
⬇️ Suggested change
- <label for="comments" class="form-field">
- Comments:
+ <label for="comments" class="form-field">
+ Comments:
________________________________
In src/index.html<#787 (comment)>:
+ <button type="submit">Submit</button>
+
+ </form>
Don't add spaces between parent and child components.
⬇️ Suggested change
- <button type="submit">Submit</button>
-
- </form>
+ <button type="submit">Submit</button>
+ </form>
—
Reply to this email directly, view it on GitHub<#787 (review)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGMYZXPFZVJJQ62YY6FBJ5LXEC7UXANCNFSM6AAAAAAXSDGH3E>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
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.
The previous comments regarding the code style change aren't fixed. could you please fix it?
after changing any file you have to redeploy and rerun the tests.
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.
Hi, I deployed again the changes requested. Can you please check?
src/index.html
Outdated
<input | ||
type="email" | ||
name="email" | ||
placeholder="[email protected]" | ||
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.
Not fixed
src/index.html
Outdated
<input | ||
type="color" | ||
name="color" | ||
value="#000000" | ||
> |
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.
Not fixed
src/index.html
Outdated
<input | ||
type="time" | ||
name="timeToBed" | ||
step="2" | ||
> |
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.
Same
src/index.html
Outdated
<input | ||
type="range" | ||
name="rate" | ||
min="0" | ||
max="100" | ||
value="0" | ||
> |
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.
And here
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.
fix the code style
Hey! If you have any questions feel free to ask them in the chat in Slack |
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.
Previous comments aren't fixed. If you have any questions, feel free to ask them in the chat
src/index.html
Outdated
<input | ||
type="password" | ||
name="password" | ||
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.
fix the code style
src/index.html
Outdated
<input | ||
type="email" | ||
name="email" | ||
placeholder="[email protected]" | ||
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.
fix the code style
src/index.html
Outdated
<input | ||
type="range" | ||
name="rate" | ||
min="0" | ||
max="100" | ||
value="0" | ||
> |
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.
fix the code style
@anstsot can you please check my latest deploy? |
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.
Great job, approved!
I did all changes requested and all tests have passed.
Can you please check?