We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f67eff5 commit 173b28dCopy full SHA for 173b28d
app/auth/captcha.rs
@@ -15,11 +15,11 @@ impl Default for CaptchaImage {
15
impl CaptchaImage {
16
pub fn new() -> CaptchaImage {
17
let captcha = CaptchaBuilder::new()
18
- .length(3)
19
- .width(130)
20
- .height(40)
+ .length(5)
+ .width(110)
+ .height(35)
21
.dark_mode(false)
22
- .complexity(1) // min: 1, max: 10
+ .complexity(0) // min: 1, max: 10
23
.compression(40) // min: 1, max: 99
24
.build();
25
let text = captcha.text.clone();
0 commit comments