mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 16:47:58 -05:00
37 lines
1.5 KiB
Text
37 lines
1.5 KiB
Text
extends /templates/modal/modal_base
|
|
|
|
block modal-header-content
|
|
h3(data-i18n="play_level.multiplayer_title") Multiplayer Settings
|
|
|
|
block modal-body-content
|
|
if !ladderGame
|
|
.form
|
|
.form-group.checkbox
|
|
label(for="multiplayer")
|
|
input#multiplayer(name="multiplayer", type="checkbox", checked=multiplayer)
|
|
| Multiplayer
|
|
span.help-block Enable others to join your game.
|
|
|
|
hr
|
|
|
|
div#link-area
|
|
p(data-i18n="play_level.multiplayer_link_description") Give this link to anyone to have them join you.
|
|
|
|
textarea.well#multiplayer-join-link(readonly=true)= joinLink
|
|
|
|
p
|
|
strong(data-i18n="play_level.multiplayer_hint_label") Hint:
|
|
span(data-i18n="play_level.multiplayer_hint") Click the link to select all, then press ⌘-C or Ctrl-C to copy the link.
|
|
|
|
p(data-i18n="play_level.multiplayer_coming_soon") More multiplayer features to come!
|
|
|
|
if ladderGame
|
|
if me.get('anonymous')
|
|
p(data-i18n="play_level.multiplayer_sign_in_leaderboard") Sign in or create an account and get your solution on the leaderboard.
|
|
else if readyToRank
|
|
button.btn.btn-success.rank-game-button(data-i18n="play_level.victory_rank_my_game") Rank My Game
|
|
else
|
|
a.btn.btn-primary(href="/play/ladder/#{levelSlug}#my-matches", data-i18n="play_level.victory_go_ladder") Return to Ladder
|
|
|
|
block modal-footer-content
|
|
a(href='#', data-dismiss="modal", aria-hidden="true", data-i18n="modal.close").btn.btn-primary Close
|