An open API service indexing awesome lists of open source software.

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

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);
};
```