Skip to content

Commit

Permalink
Changed field names & removed bottom texts (#816)
Browse files Browse the repository at this point in the history
  • Loading branch information
bexsoft committed Jun 16, 2021
1 parent 55531d6 commit 7117d87
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions portal-ui/src/screens/LoginPage/LoginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ const Login = ({ classes, userLoggedIn }: ILoginProps) => {
onChange={(e: React.ChangeEvent<HTMLInputElement>) =>
setAccessKey(e.target.value)
}
label="Enter Access Key"
label="Enter Username"
name="accessKey"
autoComplete="username"
disabled={loginSending}
Expand All @@ -295,7 +295,7 @@ const Login = ({ classes, userLoggedIn }: ILoginProps) => {
setSecretKey(e.target.value)
}
name="secretKey"
label="Enter Secret Key"
label="Enter Password"
type="password"
id="secretKey"
autoComplete="current-password"
Expand All @@ -317,12 +317,6 @@ const Login = ({ classes, userLoggedIn }: ILoginProps) => {
<Grid item xs={12} className={classes.linearPredef}>
{loginSending && <LinearProgress />}
</Grid>
<Grid item xs={12} className={classes.disclaimer}>
<strong>Don't have an access key?</strong>
<br />
<br />
Contact your administrator to have one made
</Grid>
</form>
</React.Fragment>
);
Expand Down Expand Up @@ -397,11 +391,6 @@ const Login = ({ classes, userLoggedIn }: ILoginProps) => {
<Grid item xs={12} className={classes.linearPredef}>
{loginSending && <LinearProgress />}
</Grid>
<Grid item xs={12} className={classes.disclaimer}>
<strong>Don't have an access key?</strong>
<br />
Contact your administrator to have one made
</Grid>
</form>
</React.Fragment>
);
Expand Down

0 comments on commit 7117d87

Please sign in to comment.