File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -213,11 +213,11 @@ export class Register extends Component<{}, RegisterState> {
213
213
} }
214
214
invalidMessage = { t ( "password_error_message" ) } />
215
215
</ Form . Group >
216
- < Form . Group className = "mb-3" >
217
- < Form . Check type = "checkbox" label = { < Trans i18nKey = "register.accept_privacy_notice" > < a target = "__blank" href = "https://www.tinkerforge.com/de/home/privacy_notice" > link</ a > </ Trans > } isInvalid = { ! this . state . acceptPrivacyValid } onClick = { ( ) => this . setState ( { acceptPrivacyChecked : ! this . state . acceptPrivacyChecked } ) } />
216
+ < Form . Group className = "mb-3" onClick = { ( ) => this . setState ( { acceptPrivacyChecked : ! this . state . acceptPrivacyChecked } ) } >
217
+ < Form . Check checked = { this . state . acceptPrivacyChecked } type = "checkbox" label = { < Trans i18nKey = "register.accept_privacy_notice" > < a target = "__blank" href = "https://www.tinkerforge.com/de/home/privacy_notice" > link</ a > </ Trans > } isInvalid = { ! this . state . acceptPrivacyValid } />
218
218
</ Form . Group >
219
- < Form . Group className = "mb-3" >
220
- < Form . Check type = "checkbox" label = { < Trans i18nKey = "register.accept_terms_and_conditions" > < a target = "__blank" href = "https://www.tinkerforge.com/de/home/terms_and_conditions" > link</ a > </ Trans > } isInvalid = { ! this . state . termsAndConditionsValid } onClick = { ( ) => this . setState ( { termsAndConditionsChecked : ! this . state . termsAndConditionsChecked } ) } />
219
+ < Form . Group className = "mb-3" onClick = { ( ) => this . setState ( { termsAndConditionsChecked : ! this . state . termsAndConditionsChecked } ) } >
220
+ < Form . Check checked = { this . state . termsAndConditionsChecked } type = "checkbox" label = { < Trans i18nKey = "register.accept_terms_and_conditions" > < a target = "__blank" href = "https://www.tinkerforge.com/de/home/terms_and_conditions" > link</ a > </ Trans > } isInvalid = { ! this . state . termsAndConditionsValid } />
221
221
</ Form . Group >
222
222
< Button variant = "primary" type = "submit" >
223
223
{ t ( "register" ) }
You can’t perform that action at this time.
0 commit comments