Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

authfunctions react

import React, { useState } from 'react'
import { login } from "@authfunctions/react"

export default function Login() {
  const [name, setName] = useState("");
  const [mail, setMail] = useState("");
  const [password, setPassword] = useState("");
  const [err, setErr] = useState("");
  return (
    <>
      <input
        onChange={(e) => setName(e.target.value)}
        value={name}
        placeholder="name"
      />
      <input
        onChange={(e) => setMail(e.target.value)}
        value={mail}
        placeholder="mail"
      />
      <input
        onChange={(e) => setPassword(e.target.value)}
        value={password}
        placeholder="password"
      />
      <button onClick={onLogin}>login</button>
      <br />
      <p>{err}</p>
    </>
  )
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: how to remove dash from string in javascript 
Javascript :: clear terminal node js 
Javascript :: remove apex chart toolbar 
Javascript :: thousands by comma javascript 
Javascript :: node log without newline 
Javascript :: javascript wait for document load 
Javascript :: how to Store Objects in HTML5 localStorage 
Javascript :: urlencode javascript 
Javascript :: jquery on body click 
Javascript :: javascript audio stop 
Javascript :: mui typography bold 
Javascript :: js fileinput get content 
Javascript :: create new react app 
Javascript :: jquery script tag source google 
Javascript :: javascript first and last day of the month 
Javascript :: how to run a vue js hello world app in vue version 3 
Javascript :: get text of selected option jquery 
Javascript :: javascript to redirect to another page after 5 seconds 
Javascript :: javascript void 
Javascript :: How to use font awewsome in react app 
Javascript :: javascript remove all whitespaces 
Javascript :: jquery get data attribute value 
Javascript :: camelcase to hyphenated javascript 
Javascript :: jquery scroll to specific div 
Javascript :: trigger button click jquery 
Javascript :: detecting screen width in jquery 
Javascript :: how to remove cors error from node app 
Javascript :: eslint console log 
Javascript :: javascript hass class 
Javascript :: express server how to get request ip 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =