forked from External/greenlight
Added limit for join name (#2220)
This commit is contained in:
parent
9cb09b49d1
commit
0801c626c5
|
@ -43,7 +43,8 @@
|
||||||
placeholder: t("enter_your_name"),
|
placeholder: t("enter_your_name"),
|
||||||
value: "#{@name}",
|
value: "#{@name}",
|
||||||
readonly: !current_user.nil?,
|
readonly: !current_user.nil?,
|
||||||
autofocus: true
|
autofocus: true,
|
||||||
|
maxlength: 26
|
||||||
%>
|
%>
|
||||||
<span class="input-group-append">
|
<span class="input-group-append">
|
||||||
<button id="room-join" type="submit" class="btn btn-primary btn-sm px-7 form-control join-form">
|
<button id="room-join" type="submit" class="btn btn-primary btn-sm px-7 form-control join-form">
|
||||||
|
|
Loading…
Reference in New Issue