https://github.com/sohanemon/firebase-beyond
https://github.com/sohanemon/firebase-beyond
firebase firebase-auth next next-router react
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sohanemon/firebase-beyond
- Owner: sohanemon
- Created: 2022-10-18T14:13:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-19T07:49:09.000Z (over 3 years ago)
- Last Synced: 2025-01-15T11:53:13.366Z (over 1 year ago)
- Topics: firebase, firebase-auth, next, next-router, react
- Language: JavaScript
- Homepage: https://firebase-beyond.netlify.app/
- Size: 70.9 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Get Data from form
```js
const handleSubmit = (e) => {
e.preventDefault();
const form = ["email", "password"];
let data = {};
form.forEach((el) => (data[el] = e.target[el].value));
console.log(data);
// createUserWithEmailAndPassword(auth, email, password);
};
```