@nicky202Submitted over 1 year ago
yamen
@YamenAlzeiterAll comments
- @YamenAlzeiterPosted over 1 year ago
great job your solution looks nice but have some problems need to be fix:
- when click dismiss message, the user should be able to go back to sign-up page
- email is not displayed in success message, you can get the input value and put in the span that should display the email. Something like this:
span.textContent = email.value;
- the approach you took to get to success message is creating another page, but you can actually create the message inside your index.html in another
div
with setting the display style todisplay: none
, when the user click on it, the style should swap between the card and your new div. suggestions . if you want to display something in the middle of screen, you can style the body asdisplay: flex; align-items: center; justify-content: center;
instead of usingposition: absolute
. you can usemax-width: 365px
as the card width instead ofwidth: 72%
, this will prevent the card from stretching in big screens.
hopefully these suggestion help you creating more stunning UI
Marked as helpful0