|
@@ -102,35 +102,36 @@ class Login extends React.Component {
|
102
|
102
|
onChange={this.handleChangePassword}
|
103
|
103
|
/>
|
104
|
104
|
|
105
|
|
- <div className='row mt-4 mb-4'>
|
106
|
|
- <div className='col-12 col-sm-6 col-md-6 col-lg-6 col-xl-6'>
|
107
|
|
- {/*
|
108
|
|
- <InputCheckbox
|
109
|
|
- parentClassName='connection__form__rememberme'
|
110
|
|
- customClass=''
|
111
|
|
- label='Se souvenir de moi'
|
112
|
|
- checked={this.state.inputRememberMe}
|
113
|
|
- onChange={this.handleChangeRememberMe}
|
114
|
|
- />
|
115
|
|
- */}
|
116
|
|
- </div>
|
117
|
|
-
|
118
|
|
- <div className='col-12 col-sm-6 col-md-6 col-lg-6 col-xl-6 text-sm-right'>
|
|
105
|
+ <div className='row align-items-center mt-4 mb-4'>
|
|
106
|
+
|
|
107
|
+ {/*
|
|
108
|
+ <div className='col-12 col-sm-6 col-md-6 col-lg-6 col-xl-6'>
|
|
109
|
+ <InputCheckbox
|
|
110
|
+ parentClassName='connection__form__rememberme'
|
|
111
|
+ customClass=''
|
|
112
|
+ label='Se souvenir de moi'
|
|
113
|
+ checked={this.state.inputRememberMe}
|
|
114
|
+ onChange={this.handleChangeRememberMe}
|
|
115
|
+ />
|
|
116
|
+ </div>
|
|
117
|
+ */}
|
|
118
|
+
|
|
119
|
+ <div className='col-6 col-sm-6 col-md-6 col-lg-6 col-xl-6'>
|
119
|
120
|
<LoginBtnForgotPw
|
120
|
121
|
customClass='connection__form__pwforgot'
|
121
|
122
|
label={this.props.t('Forgotten password ?')}
|
122
|
123
|
/>
|
123
|
124
|
</div>
|
|
125
|
+ <Button
|
|
126
|
+ htmlType='button'
|
|
127
|
+ bootstrapType='primary'
|
|
128
|
+ customClass='connection__form__btnsubmit ml-auto'
|
|
129
|
+ label={this.props.t('Connection')}
|
|
130
|
+ onClick={this.handleClickSubmit}
|
|
131
|
+ />
|
124
|
132
|
</div>
|
125
|
|
-
|
126
|
|
- <Button
|
127
|
|
- htmlType='button'
|
128
|
|
- bootstrapType='primary'
|
129
|
|
- customClass='connection__form__btnsubmit ml-auto'
|
130
|
|
- label={this.props.t('Connection')}
|
131
|
|
- onClick={this.handleClickSubmit}
|
132
|
|
- />
|
133
|
133
|
</div>
|
|
134
|
+
|
134
|
135
|
</CardBody>
|
135
|
136
|
</Card>
|
136
|
137
|
|