forked from External/greenlight
Fixes for 2.6 (#1677)
This commit is contained in:
@ -14,8 +14,21 @@
|
||||
%>
|
||||
|
||||
<footer class="footer pt-3">
|
||||
<p class="text-center mb-1"><%= t("footer.powered_by", href: link_to(t("greenlight"), "https://bigbluebutton.org/2018/07/09/greenlight-2-0/", target: "_blank", rel: "noopener")).html_safe %> <%= Greenlight::Application::VERSION %>
|
||||
<%= link_to( ' | ' + t("footer.legal"), legal_url ) if legal_url.present? %><%= link_to( ' | ' + t("footer.privpolicy"), privpolicy_url) if privpolicy_url.present? %></p>
|
||||
<p class="text-center mb-1">
|
||||
<%= t("footer.powered_by", href: link_to(t("greenlight"), "https://bigbluebutton.org/2018/07/09/greenlight-2-0/", target: "_blank", rel: "noopener")).html_safe %> <%= Greenlight::Application::VERSION %>
|
||||
<% if legal_url.present? %>
|
||||
<span>
|
||||
|
|
||||
<%= link_to(t("footer.legal"), legal_url) %>
|
||||
</span>
|
||||
<% end %>
|
||||
<% if privpolicy_url.present? %>
|
||||
<span>
|
||||
|
|
||||
<%= link_to(t("footer.privpolicy"), privpolicy_url) %>
|
||||
</span>
|
||||
<% end %>
|
||||
</p>
|
||||
</footer>
|
||||
|
||||
<%= render "shared/components/cookie_warning" %>
|
||||
|
@ -27,7 +27,7 @@
|
||||
<span class="input-icon-addon">
|
||||
<i class="fas fa-envelope"></i>
|
||||
</span>
|
||||
<%= f.email_field :email, class: "form-control", value: "", placeholder: t("modal.invite_user.email_placeholder"), autocomplete: :off %>
|
||||
<%= f.text_field :email, class: "form-control", value: "", placeholder: t("modal.invite_user.email_placeholder"), autocomplete: :off %>
|
||||
<div class="invalid-feedback text-left"><%= t("modal.invite_user.not_blank") %></div>
|
||||
</div>
|
||||
<div class="mt-4">
|
||||
|
Reference in New Issue
Block a user