mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
378 B
13 lines
378 B
<div class="max-w-6xl mx-auto px-2 py-2">
|
|
<a href="<%= root_path %>" class="text-2xl font-bold">
|
|
<span>DocuSeal</span>
|
|
</a>
|
|
<% if signed_in? %>
|
|
<div>
|
|
<%= link_to 'Home', root_path, class: 'bg-red-500' %>
|
|
<%= link_to 'Sign out', destroy_user_session_path, data: { turbo_method: :delete } %>
|
|
<%= current_user.email %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|