Create account page now has form

This commit is contained in:
Ava DeCroix
2023-04-27 14:40:49 -04:00
parent 38e5d82a13
commit 940fc164cf
2 changed files with 36 additions and 1 deletions

View File

@@ -31,7 +31,9 @@ function Login() {
<h1>Log In</h1>
<p>Log in to your account</p>
<form onSubmit={submitHandler}>
<input type="text" name="username" value={username} onChange={changeHandler}/><br/>
<p>Username:</p>
<input type="text" name="username" value={username} onChange={changeHandler}/>
<p>Password:</p>
<input type="password" name="password" value={password} onChange={changeHandler}/><br/>
<input type="submit" name="submit"/>
</form>