Latest solutions
Latest comments
- @ally-glenday@Datom969
To make the email input value show on the submit page, create an empty <span></span> where the email value should be in your html, give it an id( say mymail). In JavaScript, get the id. Then, to display it use DOM manipulation: mymail.innerHTML = " " + input.value +". " Then, for the dismiss button don't forget to set input.value to empty, so it doesn't show in the input field again. Check my js code for clarity.
- @ali464haider@Datom969
Nice job. I noticed that the mobile view has "horizontal scroll", something like 'overflow-x: hidden;' would take care of that. Keep up the spirit💪