Stevan-Dev
@Stv-devlAll comments
- @Johnotike1Submitted over 2 years ago@Stv-devlPosted over 2 years ago
Hi, I like the idea of green icons when the form is complete.
For the password you can add a type="password" in your input, like this when the user will write you will have stars ******
<input type="password" autocomplete="off" id="password" placeholder="Password">
Good continuation.
0 - @ugochukwuuuSubmitted over 2 years ago
I'd love to hear what you all think of this one
@Stv-devlPosted over 2 years agoHi, Nice work. I like the alert with name of user when we register.
Maybe you can try to use the function "submit" it's will be more realistic than on click :
form.addEventListener("submit", (e) => { e.preventDefault(); } });
In your Html maybe you don't need to use an ul for the form.Good continuation
0 - @danielswift10Submitted over 2 years ago
Responsive Ping single-column page built with HTML CSS and JavaScript
Check out the shake effect added to the email input area!!! 🤓
Feedback is welcomed.
Happy Coding!
@Stv-devlPosted over 2 years agoHi, Nice shad effect! I don't knew it before. It will be great if you add an effect or text when we validate an email.
I try my email and I have an error message. I think your Regex don't read majuscule.
Good continuation!
1 - @saptaparneechaudhuriSubmitted over 2 years ago
Feedback appreciated.
@Stv-devlPosted over 2 years agoHi, Nice work, I think it's will be good if you can leave the popup when you click again in the button. With a toggle or on click. Good continuation.
Marked as helpful0 - @shikot0Submitted over 2 years ago
I used a lot of Flex AGAIN but it was still quite fun to make.
@Stv-devlPosted over 2 years agoHi,
Nice solution. You could add a <main></main> in your html for have a proper html. If you want to center the card like in the original you can add a flexbox in this main :
Main { display: flex; justify-content: center; align-items: center; min-height: 100vh; }
you can also add light grey background at <div class="payment-section">I see you use a gap in your flexbox, I thought it was only for grid, I will try it also next time.
Good code
0