Skip to content

Fix case sensitive email confirmation on signup

What does this MR do?

This MR fixes a bug where the email confirmation input value is case sensitive. For example, if the email input is myemail@example.com and the email confirmation input is Myemail@example.com the form would fail to submit.

Interestingly, the inverse was not a bug. If the email input is Myemail@example.com and the email confirmation input is myemail@example.com the form would not fail to submit.

Are there points in the code the reviewer needs to double check?

Nothing specific :)

Why was this MR needed?

I ran into this bug while signing up. Since it's a server side validation I had to re-enter my password.

Screenshots (if relevant)

Before gif:

Before registration fix

After gif:

After registration fix

Does this MR meet the acceptance criteria?

What are the relevant issue numbers?

Edited by Toon Claes

Merge request reports