Skip to content

Commit 82ef032

Browse files
committed
Change: Adjust login page for new UI
Use new form components for updated UI at the login page.
1 parent f26958b commit 82ef032

File tree

1 file changed

+38
-102
lines changed

1 file changed

+38
-102
lines changed

src/web/pages/login/loginform.jsx

+38-102
Original file line numberDiff line numberDiff line change
@@ -19,80 +19,28 @@ import React from 'react';
1919

2020
import styled from 'styled-components';
2121

22-
import _ from 'gmp/locale';
23-
2422
import {KeyCode} from 'gmp/utils/event';
2523
import {isDefined} from 'gmp/utils/identity';
24+
25+
import useTranslation from 'web/hooks/useTranslation';
26+
27+
import Button from 'web/components/form/button';
2628
import FormGroup from 'web/components/form/formgroup';
2729
import TextField from 'web/components/form/textfield';
2830
import PasswordField from 'web/components/form/passwordfield';
29-
import ErrorContainer from 'web/components/error/errorcontainer';
3031
import useFormValues from 'web/components/form/useFormValues';
32+
3133
import ProductImage from 'web/components/img/product';
3234
import GreenboneLoginLogo from 'web/components/img/greenboneloginlogo';
35+
36+
import ErrorContainer from 'web/components/error/errorcontainer';
37+
3338
import Divider from 'web/components/layout/divider';
3439
import Layout from 'web/components/layout/layout';
3540

3641
import PropTypes from 'web/utils/proptypes';
3742
import Theme from 'web/utils/theme';
3843

39-
const Button = styled.button`
40-
box-sizing: border-box;
41-
color: ${Theme.white};
42-
background-color: ${Theme.loginButtonGray};
43-
border: none;
44-
border-radius: 3px;
45-
font-size: 1rem;
46-
font-weight: normal;
47-
min-height: 2.25rem;
48-
margin: 0;
49-
padding-right: 1.25rem;
50-
padding-left: 1.25rem;
51-
&:hover {
52-
cursor: pointer;
53-
background-color: ${Theme.loginButtonHover};
54-
}
55-
& + & {
56-
margin-left: 1.25rem;
57-
}
58-
`;
59-
60-
const StyledFormGroup = styled(FormGroup)`
61-
display: flex;
62-
flex-grow: 1;
63-
margin: 0;
64-
font-family: 'DroidSans', Arial, sans-serif;
65-
width: 100%;
66-
margin-bottom: 1rem;
67-
`;
68-
69-
const fieldStyles = () => `
70-
font-family: 'DroidSans', Arial, sans-serif;
71-
width: 100%;
72-
font-size: 12pt;
73-
margin-top: 16px;
74-
margin-bottom: 8px;
75-
border: none;
76-
border-bottom: 1px solid ${Theme.mediumDarkGray};
77-
transition: border-bottom-color 0.2s ease-in-out;
78-
&:hover {
79-
border-bottom: 2px solid ${Theme.darkGray};
80-
}
81-
&:focus {
82-
outline: none;
83-
border-bottom: 2px solid ${Theme.darkGray};
84-
}
85-
`;
86-
87-
const StyledTextField = styled(TextField)`
88-
${fieldStyles()}
89-
`;
90-
91-
const StyledPasswordField = styled(PasswordField)`
92-
${fieldStyles()}
93-
margin-bottom: 4px;
94-
`;
95-
9644
const Paper = styled(Layout)`
9745
background: ${Theme.white};
9846
box-shadow: 0px 14px 22px ${Theme.mediumGray};
@@ -110,11 +58,6 @@ const Panel = styled.div`
11058
margin-bottom: 10px;
11159
`;
11260

113-
const StyledLayout = styled(Layout)`
114-
min-height: 12rem;
115-
justify-content: space-evenly;
116-
`;
117-
11861
const Error = styled.p`
11962
color: ${Theme.warningRed};
12063
font-weight: bold;
@@ -128,10 +71,6 @@ const StyledErrorContainer = styled(ErrorContainer)`
12871
border-radius: 4px;
12972
`;
13073

131-
const StyledButton = styled(Button)`
132-
width: 100%;
133-
`;
134-
13574
const StyledPanel = styled(Panel)`
13675
margin-top: 20px;
13776
`;
@@ -154,6 +93,7 @@ const LoginForm = ({
15493
onGuestLoginClick,
15594
onSubmit,
15695
}) => {
96+
const [_] = useTranslation();
15797
const [{username, password}, handleValueChange] = useFormValues({
15898
username: '',
15999
password: '',
@@ -174,11 +114,11 @@ const LoginForm = ({
174114
return (
175115
<Paper>
176116
<Divider flex="column" margin="10px" grow="1">
177-
<Layout align={'center'}>
117+
<Layout align="center">
178118
<GreenboneLoginLogo width="300px" />
179119
</Layout>
180120

181-
<Layout flex={'column'}>
121+
<Layout flex="column">
182122
{showProtocolInsecure && (
183123
<StyledPanel data-testid="protocol-insecure">
184124
<Error>{_('Warning: Connection unencrypted')}</Error>
@@ -219,47 +159,43 @@ const LoginForm = ({
219159
)}
220160

221161
{showLogin && !isIE11 && (
222-
<StyledLayout flex={'column'}>
162+
<FormGroup>
223163
<H1>{_('Sign in to your account')}</H1>
224-
<StyledFormGroup size="12" paddingLeft="2px">
225-
<StyledTextField
226-
autoComplete="username"
227-
name="username"
228-
grow="1"
229-
placeholder={_('Username')}
230-
value={username}
231-
autoFocus={true}
232-
tabIndex="1"
233-
onChange={handleValueChange}
234-
/>
235-
</StyledFormGroup>
236-
<StyledFormGroup size="12" paddingLeft="2px">
237-
<StyledPasswordField
238-
autoComplete="current-password"
239-
name="password"
240-
grow="1"
241-
placeholder={_('Password')}
242-
value={password}
243-
onKeyDown={handleKeyDown}
244-
onChange={handleValueChange}
245-
/>
246-
</StyledFormGroup>
247-
<StyledButton data-testid="login-button" onClick={handleSubmit}>
164+
<TextField
165+
autoComplete="username"
166+
name="username"
167+
placeholder={_('Username')}
168+
value={username}
169+
autoFocus={true}
170+
tabIndex="1"
171+
title={_('Username')}
172+
onChange={handleValueChange}
173+
/>
174+
<PasswordField
175+
autoComplete="current-password"
176+
name="password"
177+
placeholder={_('Password')}
178+
title={_('Password')}
179+
value={password}
180+
onKeyDown={handleKeyDown}
181+
onChange={handleValueChange}
182+
/>
183+
<Button data-testid="login-button" onClick={handleSubmit}>
248184
{_('Sign In')}
249-
</StyledButton>
250-
</StyledLayout>
185+
</Button>
186+
</FormGroup>
251187
)}
252188
</>
253189

254190
{showGuestLogin && (
255-
<div data-testid="guest-login">
256-
<StyledButton
191+
<FormGroup data-testid="guest-login">
192+
<Button
257193
data-testid="guest-login-button"
258194
onClick={onGuestLoginClick}
259195
>
260196
{_('Sign In as Guest')}
261-
</StyledButton>
262-
</div>
197+
</Button>
198+
</FormGroup>
263199
)}
264200

265201
<ProductImageContainer align={'center'}>

0 commit comments

Comments
 (0)