Skip to content

Commit

Permalink
add extra guidance
Browse files Browse the repository at this point in the history
  • Loading branch information
IanMayo committed Aug 2, 2024
1 parent 6376c39 commit 5e1fe85
Showing 1 changed file with 30 additions and 15 deletions.
45 changes: 30 additions & 15 deletions src/resources/users/UserForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,7 @@ export default function UserForm({ isEdit }: FormProps): React.ReactElement {
<Typography
sx={{
color: 'red',
fontSize: '14px',
marginTop: '-25px',
marginBottom: '25px'
fontSize: '14px'
}}>
{passwordText}
</Typography>
Expand Down Expand Up @@ -296,8 +294,36 @@ export default function UserForm({ isEdit }: FormProps): React.ReactElement {
fontWeight: '600',
fontSize: '18px'
}}>
User Role
Departure Date
</span>{' '}
This is the date when the user will no longer be able to log into VAL.
If the user needs to be reactivated, this date can be updated.
</p>

<p>
<span
style={{
fontWeight: '600',
fontSize: '18px'
}}>
Password
</span>{' '}
The password should include these items:
<ul>
<li>At least 10 characters in length</li>
<li>Upper and lower case letters</li>
<li>At least one digit</li>
<li>At least one special character</li>
</ul>
</p>
<p>
<span
style={{
fontWeight: '600',
fontSize: '18px'
}}>
User Role
</span>
The above user roles have these permissions in VAL:
<ul>
<li>
Expand All @@ -315,17 +341,6 @@ export default function UserForm({ isEdit }: FormProps): React.ReactElement {
</li>
</ul>
</p>
<p>
<span
style={{
fontWeight: '600',
fontSize: '18px'
}}>
Departure Date
</span>{' '}
This is the date when the user will no longer be able to log into VAL.
If the user needs to be reactivated, this date can be updated.
</p>
</Typography>
</SimpleForm>
)
Expand Down

0 comments on commit 5e1fe85

Please sign in to comment.