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.
45 lines
1.6 KiB
45 lines
1.6 KiB
<div>
|
|
<menu-active class="block w-full md:w-52">
|
|
<ul class="menu px-0">
|
|
<li class="menu-title py-0"><span>Settings</span></li>
|
|
<li></li>
|
|
<li>
|
|
<%= link_to 'Profile', settings_profile_index_path, class: 'text-base hover:bg-base-300' %>
|
|
</li>
|
|
<li>
|
|
<%= link_to 'Account', settings_account_path, class: 'text-base hover:bg-base-300' %>
|
|
</li>
|
|
<% unless Docuseal.multitenant? %>
|
|
<li>
|
|
<%= link_to 'Email', settings_email_index_path, class: 'text-base hover:bg-base-300' %>
|
|
</li>
|
|
<li>
|
|
<%= link_to 'Storage', settings_storage_index_path, class: 'text-base hover:bg-base-300' %>
|
|
</li>
|
|
<% end %>
|
|
<li>
|
|
<%= link_to 'Signature', settings_esign_index_path, class: 'text-base hover:bg-base-300' %>
|
|
</li>
|
|
<li>
|
|
<%= link_to 'Team', settings_users_path, class: 'text-base hover:bg-base-300' %>
|
|
</li>
|
|
</ul>
|
|
</menu-active>
|
|
<div class="mx-4 border-t border-base-300">
|
|
<div class="text-sm mt-3">
|
|
Need help? Ask a question:
|
|
</div>
|
|
<div class="flex mt-3 space-x-3">
|
|
<a href="<%= Docuseal::GITHUB_URL %>" target="_blank" class="btn btn-circle btn-primary btn-md">
|
|
<%= svg_icon('brand_github', class: 'w-8 h-8') %>
|
|
</a>
|
|
<a href="<%= Docuseal::DISCORD_URL %>" target="_blank" class="btn btn-circle btn-primary btn-md">
|
|
<%= svg_icon('brand_discord', class: 'w-8 h-8') %>
|
|
</a>
|
|
<a href="<%= Docuseal::TWITTER_URL %>" target="_blank" class="btn btn-circle btn-primary btn-md">
|
|
<%= svg_icon('brand_twitter', class: 'w-8 h-8') %>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|