3eb17b7caa
If the feature is enabled and recaptcha keys are given in config, then a recaptcha box is displayed in the UI when creating a user and a recaptcha response code *must* be sent with the create API call for it to succeed.
33 lines
No EOL
527 B
CSS
33 lines
No EOL
527 B
CSS
.signup-form-element h4 {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.signup-form-element label {
|
|
font-weight: 600;
|
|
}
|
|
|
|
|
|
.signup-form-element input {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.signup-form-element .captcha {
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
|
|
.signup-form-element .captcha div {
|
|
display: inline-block;
|
|
margin: 2px;
|
|
}
|
|
|
|
.signup-form-element .captcha {
|
|
height: 0px;
|
|
transition: height ease-in-out 250ms;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.user-setup-element .captcha.expanded {
|
|
height: 94px;
|
|
} |