lato_users 3.0.0 → 3.0.1
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e9f9dedaefbe6fb54d4b4ef0d4907843d6ed0ca45296e7016463e630c5563704
|
|
4
|
+
data.tar.gz: 7ee2b21f84d6b4dadc94e0d6fad7c6c8f18f63775007f5fccf4e51460daeb80c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a17e1c0bd84352b493a3f27a7ea13f9397571167a9cbffb6f944a862a87373c4c9a429a977232b6f254b6c7a7d726a69462593b333cce67a316e2d920991b109
|
|
7
|
+
data.tar.gz: 3db3c791dbf9c8cd2d4ff1457a88954cd0101dcf4b1e37cd70a56e0ad5781e02401139425c5a6b6ca246dfb14cdaf067930ae1591397323b841b6c2e7385a070
|
data/Rakefile
CHANGED
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
<%= button_to I18n.t('lato_users.revoke_verification'), revoke_email_verification_user_path(@user), method: :patch, class: "btn btn-danger btn-sm", form: { data: { turbo_confirm: I18n.t('lato_users.are_you_sure') } } %>
|
|
18
18
|
</div>
|
|
19
19
|
<% else %>
|
|
20
|
-
<div class="d-flex flex-column flex-md-row align-items-md-center justify-content-between p-3 bg-
|
|
20
|
+
<div class="d-flex flex-column flex-md-row align-items-md-center justify-content-between p-3 bg-danger bg-opacity-10 border border-danger rounded">
|
|
21
21
|
<div class="d-flex align-items-center mb-3 mb-md-0">
|
|
22
|
-
<div class="me-3 text-
|
|
22
|
+
<div class="me-3 text-danger">
|
|
23
23
|
<i class="bi bi-exclamation-triangle-fill fs-4"></i>
|
|
24
24
|
</div>
|
|
25
25
|
<div>
|
|
26
|
-
<h5 class="fs-6 fw-bold text-
|
|
26
|
+
<h5 class="fs-6 fw-bold text-danger mb-0"><%= I18n.t('lato_users.email_not_verified') %></h5>
|
|
27
27
|
<small class="text-muted"><%= I18n.t('lato_users.email_verification_required') %></small>
|
|
28
28
|
</div>
|
|
29
29
|
</div>
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
<span class="fw-bold"><%= Lato.config.legal_privacy_policy_version %></span>
|
|
16
16
|
</p>
|
|
17
17
|
<% if @user.accepted_privacy_policy_version < Lato.config.legal_privacy_policy_version %>
|
|
18
|
-
<div class="d-flex align-items-center p-3 bg-
|
|
19
|
-
<div class="me-3 text-
|
|
18
|
+
<div class="d-flex align-items-center p-3 bg-danger bg-opacity-10 border border-danger rounded">
|
|
19
|
+
<div class="me-3 text-danger">
|
|
20
20
|
<i class="bi bi-exclamation-triangle-fill fs-4"></i>
|
|
21
21
|
</div>
|
|
22
22
|
<div>
|
|
23
|
-
<h5 class="fs-6 fw-bold text-
|
|
23
|
+
<h5 class="fs-6 fw-bold text-danger mb-0"><%= I18n.t('lato_users.version_outdated') %></h5>
|
|
24
24
|
</div>
|
|
25
25
|
</div>
|
|
26
26
|
<% else %>
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
<span class="fw-bold"><%= Lato.config.legal_terms_and_conditions_version %></span>
|
|
47
47
|
</p>
|
|
48
48
|
<% if @user.accepted_terms_and_conditions_version < Lato.config.legal_terms_and_conditions_version %>
|
|
49
|
-
<div class="d-flex align-items-center p-3 bg-
|
|
50
|
-
<div class="me-3 text-
|
|
49
|
+
<div class="d-flex align-items-center p-3 bg-danger bg-opacity-10 border border-danger rounded">
|
|
50
|
+
<div class="me-3 text-danger">
|
|
51
51
|
<i class="bi bi-exclamation-triangle-fill fs-4"></i>
|
|
52
52
|
</div>
|
|
53
53
|
<div>
|
|
54
|
-
<h5 class="fs-6 fw-bold text-
|
|
54
|
+
<h5 class="fs-6 fw-bold text-danger mb-0"><%= I18n.t('lato_users.version_outdated') %></h5>
|
|
55
55
|
</div>
|
|
56
56
|
</div>
|
|
57
57
|
<% else %>
|
data/lib/lato_users/version.rb
CHANGED