user_mgmt 0.7.10 → 0.7.11
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8bc7469a4dbed317a324286d219a41ca319ce23d
|
|
4
|
+
data.tar.gz: 128baea6a1641723f85fb3b3f24a0930bd062103
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9303acb22af5842d9e68618b679692f93a575e87df558f2d4aa0fee651b68fdc66998c26dc1b33e56a524befffebeeaa0a4a337c8c702c29738a4267433143c8
|
|
7
|
+
data.tar.gz: fedac6aea3a3cf68ece1316d32940c0038085853da2351c5b4e9bf2485254e719452f1e13350b6c6b696dab44d9b604de84e6b7276f48795bf409d6105df2983
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
.container
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
= form_tag send_password_reset_path, :class => "form-signin", :method => :get do
|
|
3
|
+
%h2 Edit
|
|
4
|
+
.login_input
|
|
5
|
+
%div
|
|
6
|
+
= text_field :user, 'Token', :class => "input-block-level", :placeholder => 'Token'
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
%div
|
|
12
|
-
= text_field :user, 'New Password Confirmation', :class => "input-block-level", :type => "password", :placeholder => 'Password Confirmation'
|
|
8
|
+
%div
|
|
9
|
+
= text_field :user, 'New Password', :class => "input-block-level", :type => "password", :placeholder => 'Password'
|
|
13
10
|
|
|
14
|
-
|
|
11
|
+
%div
|
|
12
|
+
= text_field :user, 'New Password Confirmation', :class => "input-block-level", :type => "password", :placeholder => 'Password Confirmation'
|
|
13
|
+
|
|
14
|
+
= submit_tag 'submit', :class => "btn btn-large btn-primary"
|
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
%h4.center Tell us your email address please:
|
|
6
6
|
|
|
7
7
|
.center
|
|
8
|
-
|
|
8
|
+
= text_field :user, 'Email', :class => "input-block-level", :placeholder => "Email"
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
= submit_tag 'submit', :class => "btn btn-large btn-primary"
|
data/lib/user_mgmt/version.rb
CHANGED