You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
whooshy/views/bingo/bingo-create.pug

28 lines
1.1 KiB
Plaintext

extends includes/bingo-layout
block content
div(id='container-bingo-create')
div(id='username-form')
h2 Please enter a username
input(id='input-username'
type='text'
placeholder='Enter your name'
value=username
maxlength=30
onkeydown='submitOnEnter(event, () => indicateStatus(submitUsername, "#username-status"))')
if primaryJoin
button(
id='submit-username'
onclick='joinLobby()') Join Lobby
else
button(
id='submit-username'
onclick='indicateStatus(submitUsername, "#submit-username")') Set Username
div(id='lobby-form')
if primaryJoin
button(id='create-lobby' class='inactive' onclick='createLobby()') Create Lobby
else
button(id='create-lobby' onclick='createLobby()') Create Lobby
div(id='changelog')!= changelog
include includes/bingo-statusbar