Last active
October 6, 2015 10:06
-
-
Save yamaaki/c48907e6b84a5fe93027 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#admin-admins-sessions-new | |
.row | |
.col.s12.m9 | |
.section | |
#p-title.col.s12.scrollspy | |
h2.u-title Sign in | |
= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| | |
.input-field.col.s12.l9 | |
i.material-icons.prefix email | |
= f.email_field :email, class: 'validate' | |
= f.label :email | |
.input-field.col.s12.l9 | |
i.material-icons.prefix lock_open | |
= f.password_field :password, autocomplete: 'off', class: 'validate' | |
= f.label :password | |
.col.s12 | |
.section | |
= button_tag class: 'btn waves-effect waves-light' do | |
i.material-icons.left.u-slim send | |
span Sign in | |
.col.hide-on-small-only.m3 | |
ul.section.table-of-contents.u-right-nav | |
li = link_to 'Sign in', '#p-title' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment