2014-01-03 13:32:13 -05:00
|
|
|
// TODO: refactor to be like other modals
|
2014-01-27 19:59:34 -05:00
|
|
|
.modal-dialog
|
|
|
|
.modal-header
|
|
|
|
button(type='button', data-dismiss="modal", aria-hidden="true").close ×
|
|
|
|
h3(data-i18n="play_level.multiplayer_title") Multiplayer Settings
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-01-27 19:59:34 -05:00
|
|
|
.modal-body
|
2014-02-22 15:01:05 -05:00
|
|
|
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
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-02-22 15:01:05 -05:00
|
|
|
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!
|
2014-02-06 20:31:08 -05:00
|
|
|
|
2014-02-13 13:16:27 -05:00
|
|
|
if ladderGame
|
2014-02-15 15:06:47 -05:00
|
|
|
if me.get('anonymous')
|
|
|
|
p Sign in or create an account and get your solution on the leaderboard!
|
|
|
|
else
|
2014-02-20 13:14:25 -05:00
|
|
|
a#go-to-leaderboard-button.btn.btn-primary(href="/play/ladder/#{levelSlug}/team/#{team}") Go to the leaderboard!
|
|
|
|
p You can submit your game to be ranked from the leaderboard page.
|
2014-02-13 13:16:27 -05:00
|
|
|
|
2014-01-27 19:59:34 -05:00
|
|
|
.modal-footer
|
|
|
|
a(href='#', data-dismiss="modal", aria-hidden="true", data-i18n="modal.close").btn.btn-primary Close
|