Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dashboard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
red-giant
dashboard
Commits
228ba4f6
Verified
Commit
228ba4f6
authored
4 years ago
by
Defendi Alberto
Browse files
Options
Downloads
Patches
Plain Diff
Sample login form
parent
64d41ea7
No related branches found
No related tags found
1 merge request
!7
Mock form
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/App.tsx
+2
-15
2 additions, 15 deletions
src/App.tsx
src/components/TestForm/index.tsx
+67
-0
67 additions, 0 deletions
src/components/TestForm/index.tsx
with
69 additions
and
15 deletions
src/App.tsx
+
2
−
15
View file @
228ba4f6
import
React
from
'
react
'
;
import
logo
from
'
./logo.svg
'
;
import
'
./App.css
'
;
import
{
Form
}
from
'
./components/TestForm/index
'
;
export
const
App
:
React
.
FC
=
()
=>
(
<
div
className
=
"App"
>
<
header
className
=
"App-header"
>
<
img
src
=
{
logo
}
className
=
"App-logo"
alt
=
"logo"
/>
<
p
>
Edit
<
code
>
src/App.tsx
</
code
>
and save to reload.
</
p
>
<
a
className
=
"App-link"
href
=
"https://reactjs.org"
target
=
"_blank"
rel
=
"noopener noreferrer"
>
Learn React
</
a
>
<
Form
/>
</
header
>
</
div
>
);
This diff is collapsed.
Click to expand it.
src/components/TestForm/index.tsx
0 → 100644
+
67
−
0
View file @
228ba4f6
import
React
from
'
react
'
;
import
{
createStyles
,
makeStyles
,
Theme
}
from
'
@material-ui/core/styles
'
;
import
TextField
from
'
@material-ui/core/TextField
'
;
import
Button
from
'
@material-ui/core/Button
'
;
import
FormControlLabel
from
'
@material-ui/core/FormControlLabel
'
;
import
Checkbox
from
'
@material-ui/core/Checkbox
'
;
const
useStyles
=
makeStyles
((
theme
:
Theme
)
=>
createStyles
({
root
:
{
'
& > *
'
:
{
margin
:
theme
.
spacing
(
0
),
},
},
form
:
{
width
:
'
100%
'
,
// Fix IE 11 issue.
marginTop
:
theme
.
spacing
(
1
),
},
submit
:
{
margin
:
theme
.
spacing
(
3
,
0
,
2
),
},
}),
);
export
const
Form
:
React
.
FC
=
()
=>
{
const
classes
=
useStyles
();
return
(
<
form
className
=
{
classes
.
form
}
noValidate
>
<
TextField
variant
=
"outlined"
margin
=
"normal"
required
fullWidth
id
=
"email"
label
=
"Email Address"
name
=
"email"
autoComplete
=
"email"
autoFocus
/>
<
TextField
variant
=
"outlined"
margin
=
"normal"
required
fullWidth
name
=
"password"
label
=
"Password"
type
=
"password"
id
=
"password"
autoComplete
=
"current-password"
/>
<
FormControlLabel
control
=
{
<
Checkbox
value
=
"remember"
color
=
"primary"
/>
}
label
=
"Remember me"
/>
<
Button
type
=
"submit"
fullWidth
variant
=
"contained"
color
=
"primary"
className
=
{
classes
.
submit
}
>
Sign In
</
Button
>
</
form
>
);
};
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment