Improve wording of join channel UI form restrictions

This gives a more actionable message to the user if they do not enter a valid value.
This commit is contained in:
Jérémie Astori 2017-12-23 03:05:29 -05:00
parent 5490235f4d
commit 7fa30980aa
No known key found for this signature in database
GPG Key ID: B9A4F245CD67BDE8
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<form id="join-channel-{{id}}" class="join-form" method="post" action="" autocomplete="off">
<input type="text" class="input" name="channel" placeholder="Channel" pattern="[^\s]+" maxlength="200" title="Should be a valid channel name" required>
<input type="password" class="input" name="key" placeholder="Password (optional)" pattern="[^\s]+" title="Should be a valid channel key" maxlength="200" >
<input type="text" class="input" name="channel" placeholder="Channel" pattern="[^\s]+" maxlength="200" title="The channel name may not contain spaces" required>
<input type="password" class="input" name="key" placeholder="Password (optional)" pattern="[^\s]+" maxlength="200" title="The channel password may not contain spaces">
<button type="submit" class="btn joinchan:submit" data-id="{{id}}">Join</button>
</form>