Skip to content

Commit

Permalink
Merge pull request #443 from HarperDB/aakers/STUDIO-149
Browse files Browse the repository at this point in the history
[BUG] Added max length to sign up page input fields
  • Loading branch information
deliciousmonster authored Dec 13, 2024
2 parents bb5f2d5 + 1a05130 commit f757ff2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/auth/SignUp.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ function SignUp() {
id="firstname"
name="fname"
required
maxLength={40}
autoComplete="given-name"
type="text"
title="first name"
Expand All @@ -59,6 +60,7 @@ function SignUp() {
<Input
id="lastname"
name="lname"
maxLength={40}
required
autoComplete="family-name"
type="text"
Expand All @@ -75,6 +77,7 @@ function SignUp() {
id="email"
autoComplete="email"
name="email"
maxLength={80}
required
className="mb-2"
type="text"
Expand Down

0 comments on commit f757ff2

Please sign in to comment.