mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
* WIP * WIP * WIP * WIP * WIP * WIP * WIP * format * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * fix conflict * fix conflict * chore: run rubocop * fix test * update PWA logo * fix tests * chore: lint * fix test * Refactor: Remove duplicate data attribute in activity partial and add chat form rendering in chats index --------- Co-authored-by: Josh Pigford <josh@joshpigford.com>
45 lines
2.2 KiB
Text
45 lines
2.2 KiB
Text
<%= render "layouts/shared/htmldoc" do %>
|
|
<div class="flex flex-col h-dvh">
|
|
<div class="flex flex-col h-screen px-6 py-12 bg-surface">
|
|
<div class="grow flex flex-col justify-center">
|
|
<div class="sm:mx-auto sm:w-full sm:max-w-md">
|
|
<div class="flex justify-center mt-2 md:mb-6">
|
|
<%= image_tag "logo-color.png", class: "w-16 mb-6" %>
|
|
</div>
|
|
<div class="space-y-2">
|
|
<h2 class="text-3xl font-medium text-primary text-center">
|
|
<%= content_for?(:header_title) ? yield(:header_title).html_safe : t(".your_account") %>
|
|
</h2>
|
|
<div class="space-y-3 md:hidden w-full my-4">
|
|
<div class="bg-surface-inset rounded-lg p-1 flex">
|
|
<%= link_to new_session_path,
|
|
class: "w-1/2 px-2 py-1 rounded-md text-sm text-center font-medium #{current_page?(new_session_path) ? 'bg-surface shadow-sm text-primary' : 'text-secondary'}" do %>
|
|
<%= t("layouts.auth.sign_in") %>
|
|
<% end %>
|
|
<%= link_to new_registration_path,
|
|
class: "w-1/2 px-2 py-1 rounded-md text-sm text-center font-medium #{!current_page?(new_session_path) ? 'bg-surface shadow-sm text-primary' : 'text-secondary'}" do %>
|
|
<%= t("layouts.auth.sign_up") %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<% if controller_name == "sessions" %>
|
|
<p class="text-sm text-center hidden md:block">
|
|
<%= tag.span t(".no_account"), class: "text-secondary" %> <%= link_to t(".sign_up"), new_registration_path, class: "font-medium text-primary hover:underline transition" %>
|
|
</p>
|
|
<% elsif controller_name == "registrations" %>
|
|
<p class="text-sm text-center text-gray-600 hidden md:block">
|
|
<%= t(".existing_account") %> <%= link_to t(".sign_in"), new_session_path, class: "font-medium text-primary hover:underline transition" %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-0 md:mt-8 sm:mx-auto sm:w-full sm:max-w-lg">
|
|
<%= yield %>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render "layouts/shared/footer" %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|