@@ -74,7 +74,7 @@ export function LoginInteractionArea(props: LoginInputInterface) {
74
74
errorMessage,
75
75
} = props
76
76
return (
77
- < Container fluid className = "login-container" >
77
+ < div className = "login-container pr-1 pl-1 mr-auto ml-auto " >
78
78
< LoginHeader />
79
79
< LoginInput
80
80
handleSubmit = { handleSubmit }
@@ -88,13 +88,13 @@ export function LoginInteractionArea(props: LoginInputInterface) {
88
88
setStayLoggedIn = { setStayLoggedIn }
89
89
errorMessage = { errorMessage }
90
90
/>
91
- </ Container >
91
+ </ div >
92
92
)
93
93
}
94
94
95
95
export function LoginHeader ( ) {
96
96
return (
97
- < Container className = "login-intro" >
97
+ < div className = "login-intro" >
98
98
< Row className = "justify-content-md-center" >
99
99
< Image rounded src = { logo } height = "200px" width = "auto" />
100
100
</ Row >
@@ -104,7 +104,7 @@ export function LoginHeader() {
104
104
< Row className = "justify-content-md-center" >
105
105
< h2 > Be welcome at FileFighter</ h2 >
106
106
</ Row >
107
- </ Container >
107
+ </ div >
108
108
)
109
109
}
110
110
@@ -122,10 +122,10 @@ export function LoginInput(props: LoginInputInterface) {
122
122
} = props
123
123
124
124
return (
125
- < Container className = "login-input" >
125
+ < div >
126
126
< Row className = "mt-4 justify-content-md-center" >
127
- < Col >
128
- < Form onSubmit = { handleSubmit } >
127
+ < Col className = "login-input" >
128
+ < Form onSubmit = { handleSubmit } >
129
129
< Form . Group controlId = "formBasicUsername" >
130
130
< Form . Control placeholder = "Username" value = { username }
131
131
onChange = { event => setUsername ( event . target . value ) } />
@@ -160,7 +160,7 @@ export function LoginInput(props: LoginInputInterface) {
160
160
</ Form >
161
161
</ Col >
162
162
</ Row >
163
- </ Container >
163
+ </ div >
164
164
)
165
165
}
166
166
0 commit comments