trim leading and trailing whitespace from usernames when registering

pull/1/head
ansuz 2021-07-02 12:41:34 +05:30
parent b54428c00a
commit 29d2fb38ef
1 changed files with 5 additions and 1 deletions

View File

@ -47,7 +47,11 @@ define([
var I_REALLY_WANT_TO_USE_MY_EMAIL_FOR_MY_USERNAME = false;
var registerClick = function () {
var uname = $uname.val();
var uname = $uname.val().trim();
// trim whitespace surrounding the username since it is otherwise included in key derivation
// most people won't realize that its presence is significant
$uname.val(uname);
var passwd = $passwd.val();
var confirmPassword = $confirm.val();