mirror of
https://github.com/thelounge/thelounge
synced 2024-11-11 07:04:18 +00:00
Disallow some invalid characters in nicknames and usernames
@, !, : and whitespace are disallowed due to being part of the protocol/hostmask
This commit is contained in:
parent
304e8bf5b0
commit
de6d6906f8
1 changed files with 5 additions and 3 deletions
|
@ -90,6 +90,7 @@
|
|||
id="connect:nick"
|
||||
class="input nick"
|
||||
name="nick"
|
||||
pattern="[^\s:!@]+"
|
||||
:value="defaults.nick"
|
||||
maxlength="100"
|
||||
required
|
||||
|
@ -104,8 +105,9 @@
|
|||
ref="usernameInput"
|
||||
class="input username"
|
||||
name="username"
|
||||
pattern="[^\s:!@]+"
|
||||
:value="defaults.username"
|
||||
maxlength="512"
|
||||
maxlength="100"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -118,7 +120,7 @@
|
|||
class="input"
|
||||
:type="slotProps.isVisible ? 'text' : 'password'"
|
||||
name="password"
|
||||
maxlength="512"
|
||||
maxlength="300"
|
||||
/>
|
||||
</RevealPassword>
|
||||
</div>
|
||||
|
@ -129,7 +131,7 @@
|
|||
class="input"
|
||||
name="realname"
|
||||
:value="defaults.realname"
|
||||
maxlength="512"
|
||||
maxlength="300"
|
||||
/>
|
||||
</div>
|
||||
<template v-if="defaults.uuid">
|
||||
|
|
Loading…
Reference in a new issue