Files
fizzy/app/views/memberships/unlink/show.html.erb
T
Stanko Krtalić 98755844a1 Remove the internal API
* Bind sessions to identities
* Remove references to the identity token
* Move email changes to identity
* Move account menu into a turbo-frame
* Create tenants from a tenanted route
2025-10-31 16:26:08 +01:00

25 lines
757 B
Plaintext

<% @page_title = "Leaving #{@membership.account_name}" %>
<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-block-start">You no longer have access to this account.</p>
</header>
<%= form_with \
url: unlink_membership_path(membership_id: params[:membership_id]),
class: "flex flex-column gap txt-medium",
data: { controller: "auto-submit" } do |form| %>
<button type="submit" id="log_in" class="btn btn--link center">
<span>Leave</span>
<%= icon_tag "arrow-right" %>
</button>
<% end %>
</div>
<% content_for :footer do %>
<%= render "sessions/footer" %>
<% end %>