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.
12 lines
476 B
12 lines
476 B
<% account = @template&.account || @submitter&.account || current_account %>
|
|
<a href="/" class="flex justify-center items-center">
|
|
<% if account&.logo&.attached? %>
|
|
<%= image_tag account.logo, class: 'mr-3 max-w-14 max-h-14 object-contain' %>
|
|
<% else %>
|
|
<span class="mr-3">
|
|
<%= render 'shared/logo', width: '50px', height: '50px' %>
|
|
</span>
|
|
<% end %>
|
|
<h1 class="text-5xl font-bold text-center"><%= account&.name || Docuseal.product_name %></h1>
|
|
</a>
|