Files
Reem-Notas/app/views/paginas/sem_acesso.html.erb

21 lines
1012 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<% content_for :title, 'Sem acesso' %>
<div class="max-w-xl mx-auto text-center py-16">
<p class="mb-4"><%= icone :travado, tamanho: 'w-14 h-14', cor: 'text-gray-600', espaco: false %></p>
<h1 class="text-2xl font-bold text-white mb-2">Você ainda não tem acesso a nenhuma tela</h1>
<p class="text-gray-300 text-base">
Olá, <%= current_user.nome_display %>. Sua conta está ativa, mas o perfil de acesso
<% if @perfil %>
(<span class="text-white font-semibold"><%= @perfil.nome %></span>)
<% end %>
não libera nenhuma área do sistema.
</p>
<p class="text-gray-400 text-base mt-3">
Peça a um administrador para revisar seu perfil em <span class="text-gray-200">Administração Perfis de acesso</span>.
</p>
<%= link_to rotulo(:sair, 'Sair', cor: nil), destroy_user_session_path,
data: { turbo_method: :delete },
class: 'inline-flex items-center mt-8 px-5 py-3 border border-[#2a2a2a] rounded-xl text-gray-300 hover:text-white min-h-[48px]' %>
</div>