Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • Stevan-Dev 330

    @Stv-devl

    Posted

    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
  • Stevan-Dev 330

    @Stv-devl

    Posted

    Hi, 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
  • Stevan-Dev 330

    @Stv-devl

    Posted

    Hi, 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
  • Stevan-Dev 330

    @Stv-devl

    Posted

    Hi, 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 helpful

    0
  • Stevan-Dev 330

    @Stv-devl

    Posted

    Hi,

    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