Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tupá
Manage
Activity
Members
Labels
Plan
Issues
13
Issue boards
Milestones
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sistemas
Tupá
Merge requests
!149
Fix frontend: evita que ingrese caracteres especial y espacios en el email
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix frontend: evita que ingrese caracteres especial y espacios en el email
feature/espacios-email-frontend
into
develop
Overview
3
Commits
1
Pipelines
2
Changes
1
All threads resolved!
Hide all comments
Merged
Luciano Cassettai
requested to merge
feature/espacios-email-frontend
into
develop
3 years ago
Overview
3
Commits
1
Pipelines
2
Changes
1
All threads resolved!
Hide all comments
Expand
related
#104 (closed)
0
0
Merge request reports
Compare
develop
version 1
1939cac3
3 years ago
develop (base)
and
latest version
latest version
8e886fd5
1 commit,
3 years ago
version 1
1939cac3
1 commit,
3 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
frontend/src/components/EmailForm.js
+
1
−
1
Options
@@ -210,7 +210,7 @@ export default function EmailForm(props) {
rules
=
{{
required
:
true
,
minLength
:
2
,
pattern
:
{
value
:
/^
[
^
$@%&|<>#
]
*
$/
},
pattern
:
{
value
:
/^
[
A-Z0-9a-z._-
]{2,64}
$/
i
},
}}
name
=
"
email
"
defaultValue
=
""
Loading