Let's get your account set up and ready

Unleash the power of AI to write, review, and optimize code with ease.

I save 5 hours each day

Softcodes has been a game-changer for our development team. Their AI-powered coding solutions have streamlined our workflows and enabled us to write better code faster than ever before

Jared Samson
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
import './App.css'; import { useState } from'react'; import { app, database } from './firebaseConfig.js' import { getAuth, signInWithEmailAndPassword, createUserWithEmailAndPassword, GoogleAuthProvider, signInWithPopup, GithubAuthProvider } from 'firebase/auth' function App() { const [data, setData] = useState({ email: '', password: '' }) const auth = getAuth(app); const handleInputs = (event) => { let inputs = {[event.target.name] : event.target.value}; setData({...data, ...inputs}) } const handleSubmit = () => { createUserWithEmailAndPassword(auth, data.email, data.password) .then((response) => { console.log(response.user) }) .catch((err) => { alert(err.message) }); } return (
handleInputs(event)} /> handleInputs(event)} />
); } export default App;