d41d50d52b
and some other de-tenant changes, including removing the controller tenanting concerns
20 lines
695 B
Plaintext
20 lines
695 B
Plaintext
<% @hide_footer_frames = true %>
|
|
<% @page_title = "Signing in..." %>
|
|
|
|
<div class="panel panel--centered flex flex-column gap-half">
|
|
<header>
|
|
<h1 class="txt-x-large font-weight-black margin-none">
|
|
<%= @page_title %>
|
|
</h1>
|
|
<p class="margin-none">Just a sec while we sign you in with <%= Current.account.name %>.</p>
|
|
</header>
|
|
|
|
<%= form_with url: session_start_path, method: :post, data: { controller: "form auto-submit" } do |form| %>
|
|
<%= form.button "Sign in", type: "submit", class: "btn btn-primary", data: { form_target: "submit", turbo_submits_with: "Signing in..." } %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% content_for :footer do %>
|
|
<%= render "sessions/footer" %>
|
|
<% end %>
|