-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
base: master
Are you sure you want to change the base?
miami #2672
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work! 🚀
<script | ||
src="scripts/main.js" | ||
defer | ||
></script> |
There was a problem hiding this comment.
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
<form | ||
action="#" | ||
onsubmit="event.preventDefault()" | ||
class="form" | ||
> |
There was a problem hiding this comment.
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();
});
<form | |
action="#" | |
onsubmit="event.preventDefault()" | |
class="form" | |
> | |
<form | |
action="#" | |
class="form" | |
> |
https://GrzegorzLasota.github.io/layout_miami/