Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions server/views/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ block content
input#joinincode.form-control(type='text', placeholder='abcd', autocomplete='off')
label Name:
.form-group
input#joininname.form-control(type='text', placeholder='Use your real name!', maxlength=16)
input#joininname.form-control(type='text', placeholder='Use your real name!', minlength=3, maxlength=16)
.btn-toolbar
button#joinmenu-back.btn.btn-default.btn-lg.mr-2(type='button') Back
button#joinmenu-go.btn.btn-default.btn-lg(type='submit') Join
Expand All @@ -47,7 +47,7 @@ block content
.input-container
label Name:
.form-group
input#newinname.form-control(type='text', placeholder='Use your real name!', maxlength=16)
input#newinname.form-control(type='text', placeholder='Use your real name!', minlength=3, maxlength=16)
.btn-toolbar
button#newmenu-back.btn.btn-default.btn-lg.mr-2(type='button') Back
button#newmenu-go.btn.btn-default.btn-lg(type='submit') Start
Expand Down