codecombat/app/templates/play/level/modal/multiplayer.jade
2014-02-07 10:51:21 -08:00

38 lines
1.4 KiB
Text

// TODO: refactor to be like other modals
.modal-dialog
.modal-header
button(type='button', data-dismiss="modal", aria-hidden="true").close ×
h3(data-i18n="play_level.multiplayer_title") Multiplayer Settings
.modal-body
.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 playableTeams.length > 1
#multiplayer-team-selection
for team in playableTeams
h4
if team == me.team
em= "Playing as " + team
else
a(href=joinLink + "&skip_protect_api=true&team=" + team)= "Play as " + team
.modal-footer
a(href='#', data-dismiss="modal", aria-hidden="true", data-i18n="modal.close").btn.btn-primary Close