mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 01:55:38 -05:00
30 lines
850 B
Text
30 lines
850 B
Text
|
extends /templates/core/modal-base
|
||
|
|
||
|
block modal-header-content
|
||
|
.clearfix
|
||
|
|
||
|
|
||
|
block modal-body-content
|
||
|
.text-center
|
||
|
h2.modal-title(data-i18n="login.log_in")
|
||
|
|
||
|
form.form
|
||
|
.form-group
|
||
|
label.control-label(for="email")
|
||
|
span(data-i18n="general.email")
|
||
|
| :
|
||
|
.input-border
|
||
|
input#email.input-large.form-control(name="email", type="email", value=view.formValues.email)
|
||
|
.form-group
|
||
|
label.control-label(for="password")
|
||
|
span(data-i18n="general.password") Password
|
||
|
| :
|
||
|
.input-border
|
||
|
input#password.input-large.form-control(name="password", type="password", value=view.formValues.password)
|
||
|
|
||
|
.text-center
|
||
|
button#log-in-btn.btn.btn-default(data-i18n="login.log_in")
|
||
|
p
|
||
|
a#create-new-account-link(data-i18n="login.signup_switch")
|
||
|
|
||
|
block modal-footer-content
|