23 lines
599 B
Text
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 %>
|