mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add name attribiutes to email login form elements
This commit is contained in:
parent
735169bf41
commit
291bb59248
1 changed files with 2 additions and 0 deletions
|
|
@ -52,6 +52,7 @@ export function EmailLogin(): JSX.Element {
|
|||
<BorderedFormInput
|
||||
key="email"
|
||||
type="text"
|
||||
name="email"
|
||||
value={email}
|
||||
placeholder="Email"
|
||||
onChange={(e) => { e.preventDefault(); setEmail(e.target.value); }}
|
||||
|
|
@ -63,6 +64,7 @@ export function EmailLogin(): JSX.Element {
|
|||
<BorderedFormInput
|
||||
key="password"
|
||||
type="password"
|
||||
name="password"
|
||||
value={password}
|
||||
placeholder="Password"
|
||||
onChange={(e) => setPassword(e.target.value)}
|
||||
|
|
|
|||
Loading…
Reference in a new issue