jam-cloud/web/app/views/clients/_checkout_signin.html.slim

93 lines
3.0 KiB
Plaintext

div layout="screen" layout-id="checkoutSignin" id="checkoutSignInScreen" class="screen secondary no-login-required"
.content
.content-head
.content-icon= image_tag("content/icon_shopping_cart.png", {:height => 19, :width => 19})
h1 check out
= render "screen_navigation"
.content-body
.content-body-scroller
.checkout-signin
.checkout-navigation-bar
.content-holder
.already-signed-in
h3 YOU ARE ALREADY LOGGED IN
p.carry-on-prompt
| You can move on to the next step of checkout.
.actions
a.btnNext.button-orange NEXT
.left-side
h3 ALREADY A MEMBER OF THE JAMKAZAM COMMUNITY?
.left-side-content
.signin-form
.signin-prompt Sign in using your email address:
.clearall
form.signin-form
.input-elements
.out
label.inline Email:
.email.field
input name='email' autofocus="true" type="text"
.out
label.inline Password:
.password.field
input name='password' autofocus="true" type="password"
.login-error-msg Invalid login
br clear='all'
.actions
small
a.forgot-password href='/request_reset_password' Forgot Password?
= link_to "SIGN IN", '#', class: 'button-orange signin-submit'
p.facebook-prompt Or sign in using Facebook:
= link_to image_tag("content/button_facebook_signin.png", {:width => 249, :height => 46}), '/auth/facebook', class: "signin-facebook"
.right-side
h3 NOT A MEMBER YET?
p.signup-later-prompt
| Thousands of musicians are now registered members of JamKazam. Click the NEXT button below to join us, and welcome!
.actions
a.btnNext.button-orange NEXT
script type='text/template' id='template-checkout-navigation'
.checkout-navigation
.nav-signin
= "{% if (data.current == 1) { %}"
.nav-text.selected
.badge-number 1
| Sign In
= "{% } else { %}"
.nav-text
.badge-number.disabled 1
| Sign In
= "{% } %}"
.clearall
.nav-payment-info
= "{% if (data.current == 2) { %}"
.nav-text.selected
.badge-number 2
| Address & Payment
= "{% } else { %}"
.nav-text
.badge-number.disabled 2
| Address & Payment
= "{% } %}"
.clearall
.nav-place-order
= "{% if (data.current == 3) { %}"
.nav-text.selected
.badge-number 3
| Place Order
= "{% } else { %}"
.nav-text
.badge-number.disabled 3
| Place Order
= "{% } %}"
.clearall