towerops/lib/towerops_web/live/help_live/index.html.heex
2026-02-03 09:07:06 -06:00

23 lines
599 B
Text

<%= if @is_authenticated do %>
<Layouts.authenticated
flash={@flash}
current_scope={@current_scope}
active_page="help"
>
<.help_content
active_section={@active_section}
generated_password={@generated_password}
password_generating={@password_generating}
/>
</Layouts.authenticated>
<% else %>
<Layouts.app flash={@flash}>
<div class="py-8">
<.help_content
active_section={@active_section}
generated_password={@generated_password}
password_generating={@password_generating}
/>
</div>
</Layouts.app>
<% end %>