bootstrap_views_generator 0.1.5 → 0.1.6
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 +4 -4
- data/lib/bootstrap_views_generator/version.rb +1 -1
- data/lib/generators/bootstrap/templates/devise/erb/unlocks/new.html.erb.tt +15 -14
- data/lib/generators/bootstrap/templates/devise/haml/unlocks/new.html.haml.tt +11 -11
- data/lib/generators/bootstrap/templates/devise/slim/unlocks/new.html.slim.tt +11 -11
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f4e1213d3dacbb83cf2625a01208f53976f2e9f7b4cf2fb5692889ff00ae40ae
|
|
4
|
+
data.tar.gz: 04fb8f8d706cfca0908ddca1ecd383adeb3bf67c731f5fe62b858b5f36598d04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13cbce0e9048eaa44117e427f95455ef8149c9a65ba4e2dbffc2ba543265880a37ee712e89b780e437859c3e4513883f0e0d531469f1a3ef058ea2dafab22004
|
|
7
|
+
data.tar.gz: ae8cfb44a37695b849ce7e05fd94be68cb52880b78ee6a96676e5c70b1455852416077deba2de7c9ea86f321c392a1aec490b0b9c610e5ae96b4d33872aabc6a
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
+
<div class="row">
|
|
2
|
+
<div class="col-lg-4 col-md-6 ml-auto mr-auto
|
|
1
3
|
<%- if options[:metatags] %>
|
|
2
|
-
<h2 class="text-center"><%%= title("Resend unlock instructions") %></h2>
|
|
4
|
+
<h2 class="text-center"><%%= title("Resend unlock instructions") %></h2>
|
|
3
5
|
<% else -%>
|
|
4
|
-
<h2 class="text-center">Resend unlock instructions</h2>
|
|
6
|
+
<h2 class="text-center">Resend unlock instructions</h2>
|
|
5
7
|
<%- end %>
|
|
6
|
-
<%%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %>
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
<%%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %>
|
|
9
|
+
<%%= render "devise/shared/error_messages", resource: resource %>
|
|
10
|
+
<div class="form-group">
|
|
11
|
+
<%%= f.email_field :email, autofocus: true, placeholder: 'Email Address', autocomplete: "email", class: 'form-control' %>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="actions">
|
|
14
|
+
<%%= f.submit "Resend unlock instructions", class: 'btn btn-primary btn-block btn-lg' %>
|
|
15
|
+
</div>
|
|
16
|
+
<%%= render "devise/shared/links" %>
|
|
17
|
+
<%% end %>
|
|
12
18
|
</div>
|
|
13
|
-
|
|
14
|
-
<div class="form-group">
|
|
15
|
-
<%%= f.submit "Resend unlock instructions", class: 'btn btn-primary btn-block btn-lg' %>
|
|
16
|
-
</div>
|
|
17
|
-
<%% end %>
|
|
18
|
-
<%%= render "devise/shared/links" %>
|
|
19
|
+
</div>
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
+
.row
|
|
2
|
+
.col-lg-4.col-md-6.ml-auto.mr-auto
|
|
1
3
|
<%- if options[:metatags] %>
|
|
2
|
-
%h2.text-center= title("Resend unlock instructions")
|
|
4
|
+
%h2.text-center= title("Resend unlock instructions")
|
|
3
5
|
<% else -%>
|
|
4
|
-
%h2.text-center Resend unlock instructions
|
|
6
|
+
%h2.text-center Resend unlock instructions
|
|
5
7
|
<%- end %>
|
|
6
|
-
= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
= f.submit 'Resend unlock instructions', class: 'btn btn-primary btn-block btn-lg'
|
|
14
|
-
= render 'devise/shared/links'
|
|
8
|
+
= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f|
|
|
9
|
+
= render "devise/shared/error_messages", resource: resource
|
|
10
|
+
.form-group
|
|
11
|
+
= f.email_field :email, autofocus: true, placeholder: 'Email Address', autocomplete: "email", class: 'form-control'
|
|
12
|
+
.actions
|
|
13
|
+
= f.submit "Resend unlock instructions", class: 'btn btn-primary btn-block btn-lg'
|
|
14
|
+
= render "devise/shared/links"
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
+
.row
|
|
2
|
+
.col-lg-4.col-md-6.ml-auto.mr-auto
|
|
1
3
|
<%- if options[:metatags] %>
|
|
2
|
-
h2.text-center = title('Resend unlock instructions')
|
|
4
|
+
h2.text-center = title('Resend unlock instructions')
|
|
3
5
|
<% else -%>
|
|
4
|
-
h2.text-center Resend unlock instructions
|
|
6
|
+
h2.text-center Resend unlock instructions
|
|
5
7
|
<%- end %>
|
|
6
|
-
= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
= f.submit "Resend unlock instructions", class: 'btn btn-primary btn-block btn-lg'
|
|
14
|
-
= render "devise/shared/links"
|
|
8
|
+
= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f|
|
|
9
|
+
= render "devise/shared/error_messages", resource: resource
|
|
10
|
+
.form-group
|
|
11
|
+
= f.email_field :email, autofocus: true, placeholder: 'Email Address', autocomplete: "email", class: 'form-control'
|
|
12
|
+
.actions
|
|
13
|
+
= f.submit "Resend unlock instructions", class: 'btn btn-primary btn-block btn-lg'
|
|
14
|
+
= render "devise/shared/links"
|