Skip to content
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

miami #2672

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

miami #2672

wants to merge 3 commits into from

Conversation

GrzegorzLasota
Copy link

Copy link

@natalia-klonowska natalia-klonowska left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work! 🚀

Comment on lines -14 to -17
<script
src="scripts/main.js"
defer
></script>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add this back so you can use js to reset your form after submit

Comment on lines +358 to +362
<form
action="#"
onsubmit="event.preventDefault()"
class="form"
>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to reset form after submit you can add this to main.js file:

const form = document.querySelector('form');
form.addEventListener('submit', (event) => {
  event.preventDefault();

  form.reset();
});
Suggested change
<form
action="#"
onsubmit="event.preventDefault()"
class="form"
>
<form
action="#"
class="form"
>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants