user_mgmt 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
.container
|
|
2
|
-
.row
|
|
3
|
-
.span6.offset3
|
|
4
2
|
= form_tag user_log_in_path, :class => "form-signin", :method => :post do
|
|
5
3
|
%h2.form-signin-heading Log in
|
|
6
4
|
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
.login_input
|
|
6
|
+
%div
|
|
7
|
+
= text_field :user, 'Email', :class => "input-block-level", :placeholder => "Email"
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
%div
|
|
10
|
+
= text_field :user, 'Password', :class => "input-block-level", :type => "password", :placeholder => 'Password'
|
|
12
11
|
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
.login_buttons
|
|
13
|
+
= submit_tag 'submit', :class => "btn btn-large btn-primary"
|
|
14
|
+
= link_to 'cancel', cancel_path, :class => "btn btn-large btn-primary"
|
|
15
15
|
|
|
16
16
|
%ul.unstyled
|
|
17
17
|
%li
|
data/lib/user_mgmt/version.rb
CHANGED