mirror of https://github.com/Trivernis/whooshy.git
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.
17 lines
709 B
Plaintext
17 lines
709 B
Plaintext
6 years ago
|
extends bingo-layout
|
||
|
|
||
|
block content
|
||
|
div(id='container-bingo-create')
|
||
|
div(id='username-form')
|
||
|
input(id='input-username'
|
||
|
type='text'
|
||
|
placeholder='Enter your name'
|
||
|
onkeydown='submitOnEnter(event, () => indicateStatus(submitUsername, "#username-status"))')
|
||
|
button(
|
||
|
id='submit-username'
|
||
|
onclick='indicateStatus(submitUsername, "#username-status")') Set Username
|
||
|
div(id='username-status' class='statusIndicator')
|
||
|
div(id='lobby-form')
|
||
|
button(id='join-lobby' onclick='joinLobby()') Join Lobby
|
||
|
button(id='create-lobby' onclick='createLobby()') Create Lobby
|