Add Set Valid Username state

This commit is contained in:
Ray 2023-09-12 10:36:15 +00:00 committed by GitHub
parent 1497d806f6
commit 9781154b53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import {useState, useEffect} from 'react';
export function Signup ( props ) { export function Signup ( props ) {
const[username,setUsername] = useState('') const[username,setUsername] = useState('')
const[validusername,setValidusername] = useState(false)
const[useremail,setUseremail] = useState('') const[useremail,setUseremail] = useState('')
const[password,setPassword] = useState('') const[password,setPassword] = useState('')