@@ -19,80 +19,28 @@ import React from 'react';
19
19
20
20
import styled from 'styled-components' ;
21
21
22
- import _ from 'gmp/locale' ;
23
-
24
22
import { KeyCode } from 'gmp/utils/event' ;
25
23
import { isDefined } from 'gmp/utils/identity' ;
24
+
25
+ import useTranslation from 'web/hooks/useTranslation' ;
26
+
27
+ import Button from 'web/components/form/button' ;
26
28
import FormGroup from 'web/components/form/formgroup' ;
27
29
import TextField from 'web/components/form/textfield' ;
28
30
import PasswordField from 'web/components/form/passwordfield' ;
29
- import ErrorContainer from 'web/components/error/errorcontainer' ;
30
31
import useFormValues from 'web/components/form/useFormValues' ;
32
+
31
33
import ProductImage from 'web/components/img/product' ;
32
34
import GreenboneLoginLogo from 'web/components/img/greenboneloginlogo' ;
35
+
36
+ import ErrorContainer from 'web/components/error/errorcontainer' ;
37
+
33
38
import Divider from 'web/components/layout/divider' ;
34
39
import Layout from 'web/components/layout/layout' ;
35
40
36
41
import PropTypes from 'web/utils/proptypes' ;
37
42
import Theme from 'web/utils/theme' ;
38
43
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
-
96
44
const Paper = styled ( Layout ) `
97
45
background: ${ Theme . white } ;
98
46
box-shadow: 0px 14px 22px ${ Theme . mediumGray } ;
@@ -110,11 +58,6 @@ const Panel = styled.div`
110
58
margin-bottom: 10px;
111
59
` ;
112
60
113
- const StyledLayout = styled ( Layout ) `
114
- min-height: 12rem;
115
- justify-content: space-evenly;
116
- ` ;
117
-
118
61
const Error = styled . p `
119
62
color: ${ Theme . warningRed } ;
120
63
font-weight: bold;
@@ -128,10 +71,6 @@ const StyledErrorContainer = styled(ErrorContainer)`
128
71
border-radius: 4px;
129
72
` ;
130
73
131
- const StyledButton = styled ( Button ) `
132
- width: 100%;
133
- ` ;
134
-
135
74
const StyledPanel = styled ( Panel ) `
136
75
margin-top: 20px;
137
76
` ;
@@ -154,6 +93,7 @@ const LoginForm = ({
154
93
onGuestLoginClick,
155
94
onSubmit,
156
95
} ) => {
96
+ const [ _ ] = useTranslation ( ) ;
157
97
const [ { username, password} , handleValueChange ] = useFormValues ( {
158
98
username : '' ,
159
99
password : '' ,
@@ -174,11 +114,11 @@ const LoginForm = ({
174
114
return (
175
115
< Paper >
176
116
< Divider flex = "column" margin = "10px" grow = "1" >
177
- < Layout align = { ' center' } >
117
+ < Layout align = " center" >
178
118
< GreenboneLoginLogo width = "300px" />
179
119
</ Layout >
180
120
181
- < Layout flex = { ' column' } >
121
+ < Layout flex = " column" >
182
122
{ showProtocolInsecure && (
183
123
< StyledPanel data-testid = "protocol-insecure" >
184
124
< Error > { _ ( 'Warning: Connection unencrypted' ) } </ Error >
@@ -219,47 +159,43 @@ const LoginForm = ({
219
159
) }
220
160
221
161
{ showLogin && ! isIE11 && (
222
- < StyledLayout flex = { 'column' } >
162
+ < FormGroup >
223
163
< 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 } >
248
184
{ _ ( 'Sign In' ) }
249
- </ StyledButton >
250
- </ StyledLayout >
185
+ </ Button >
186
+ </ FormGroup >
251
187
) }
252
188
</ >
253
189
254
190
{ showGuestLogin && (
255
- < div data-testid = "guest-login" >
256
- < StyledButton
191
+ < FormGroup data-testid = "guest-login" >
192
+ < Button
257
193
data-testid = "guest-login-button"
258
194
onClick = { onGuestLoginClick }
259
195
>
260
196
{ _ ( 'Sign In as Guest' ) }
261
- </ StyledButton >
262
- </ div >
197
+ </ Button >
198
+ </ FormGroup >
263
199
) }
264
200
265
201
< ProductImageContainer align = { 'center' } >
0 commit comments