Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
greg
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
it-bott-integrasjoner
greg
Commits
60e40478
Commit
60e40478
authored
3 years ago
by
Tore.Brede
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into GREG-165_handle_missing_information_from_feide
parents
9cec0165
ec24555f
No related branches found
No related tags found
1 merge request
!239
GREG-165: Part 1 : Handle missing information from Feide
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/src/routes/guest/register/index.tsx
+4
-1
4 additions, 1 deletion
frontend/src/routes/guest/register/index.tsx
frontend/src/routes/guest/register/steps/register.tsx
+8
-19
8 additions, 19 deletions
frontend/src/routes/guest/register/steps/register.tsx
with
12 additions
and
20 deletions
frontend/src/routes/guest/register/index.tsx
+
4
−
1
View file @
60e40478
...
...
@@ -357,7 +357,10 @@ export default function GuestRegister() {
}
const
handleCancel
=
()
=>
{
history
.
push
(
'
/
'
)
// Go back to the invite page. The invitation ID does not need
// to be specified here, since the user has already been
// logged in and can be identified without the invitation ID
history
.
push
(
'
/invite
'
)
}
return
(
...
...
This diff is collapsed.
Click to expand it.
frontend/src/routes/guest/register/steps/register.tsx
+
8
−
19
View file @
60e40478
...
...
@@ -8,7 +8,7 @@ import {
TextField
,
Typography
,
}
from
'
@mui/material
'
import
{
Controller
,
SubmitHand
ler
,
useForm
}
from
'
react-hook-form
'
import
{
SubmitHandler
,
Control
ler
,
useForm
}
from
'
react-hook-form
'
import
React
,
{
forwardRef
,
Ref
,
...
...
@@ -17,7 +17,7 @@ import React, {
useImperativeHandle
,
useState
,
}
from
'
react
'
import
{
Trans
,
useTranslation
}
from
'
react-i18next
'
import
{
useTranslation
,
Trans
}
from
'
react-i18next
'
import
{
CountryCallingCode
,
CountryCode
,
...
...
@@ -247,10 +247,10 @@ const GuestRegisterStep = forwardRef(
>
{
t
(
'
guestRegisterWizardText.yourContactInformation
'
)
}
</
Typography
>
<
Typography
sx
=
{
{
paddingBottom
:
'
2rem
'
}
}
>
<
Typography
>
{
t
(
'
guestRegisterWizardText.contactInformationDescription
'
)
}
<
Divider
sx
=
{
{
border
:
'
1px solid
'
}
}
/>
</
Typography
>
<
Divider
sx
=
{
{
marginBottom
:
'
2rem
'
,
border
:
'
1px solid
'
}
}
/>
<
form
onSubmit
=
{
onSubmit
}
>
<
Stack
spacing
=
{
2
}
>
<
Controller
...
...
@@ -468,13 +468,13 @@ const GuestRegisterStep = forwardRef(
<
Typography
variant
=
"h5"
sx
=
{
{
paddingTop
:
'
1rem
'
}
}
>
{
t
(
'
guestRegisterWizardText.identityHeader
'
)
}
</
Typography
>
<
Typography
sx
=
{
{
paddingBottom
:
'
1rem
'
}
}
>
<
Typography
>
<
Trans
i18nKey
=
"common:guestRegisterWizardText.identityBody"
>
Enter national identity number if you have one.
<
strong
>
Otherwise
</
strong
>
use passport information.
</
Trans
>
<
Divider
sx
=
{
{
border
:
'
1px solid
'
}
}
/>
</
Typography
>
<
Divider
sx
=
{
{
marginBottom
:
'
1rem
'
,
border
:
'
1px solid
'
}
}
/>
{
/* The guest should fill in one of national ID number or passport number */
}
<
Controller
name
=
"nationalIdNumber"
...
...
@@ -555,24 +555,13 @@ const GuestRegisterStep = forwardRef(
<
Typography
color
=
"error"
>
{
idErrorState
}
</
Typography
>
)
}
{
/* {initialGuestData.authentication_method === */
}
{
/* AuthenticationMethod.Feide && ( */
}
{
/* <TextField */
}
{
/* id="national_id_number" */
}
{
/* data-testid="national_id_number_feide" */
}
{
/* label={t('input.nationalIdNumber')} */
}
{
/* value={initialGuestData.fnr} */
}
{
/* disabled */
}
{
/* /> */
}
{
/* )} */
}
<
Typography
variant
=
"h5"
sx
=
{
{
paddingTop
:
'
1rem
'
}
}
>
{
t
(
'
guestRegisterWizardText.yourGuestPeriod
'
)
}
</
Typography
>
<
Typography
sx
=
{
{
paddingBottom
:
'
1rem
'
}
}
>
<
Typography
>
{
t
(
'
guestRegisterWizardText.guestPeriodDescription
'
)
}
<
Divider
sx
=
{
{
border
:
'
1px solid
'
}
}
/>
</
Typography
>
<
Divider
sx
=
{
{
marginBottom
:
'
1rem
'
,
border
:
'
1px solid
'
}
}
/>
<
TextField
id
=
"ou-unit"
value
=
{
...
...
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