Introduce clubs con abbonamento, branding Active Storage e flusso registrazione società; corregge healthcheck MediaMTX (immagine distroless) e allinea dominio produzione matchlivetv.it. Co-authored-by: Cursor <cursoragent@cursor.com>
31 lines
1.8 KiB
Plaintext
31 lines
1.8 KiB
Plaintext
<% content_for :title, "Registra società — Match Live TV" %>
|
|
<% content_for :meta_description, "Crea la società sportiva e la prima squadra su Match Live TV." %>
|
|
<% content_for :robots, "noindex, nofollow" %>
|
|
|
|
<section class="auth-page">
|
|
<h1>La tua società</h1>
|
|
<p class="auth-lead">Registra il club: potrai aggiungere più squadre (Under 13, Under 15, Serie C…).</p>
|
|
<div class="card card-wide">
|
|
<%= form_with url: public_clubs_path, multipart: true do %>
|
|
<h2 class="form-section-title">Società</h2>
|
|
<%= label_tag "club[name]", "Nome società / club" %>
|
|
<%= text_field_tag "club[name]", params.dig(:club, :name), required: true, placeholder: "es. Crazy Volley Rozzano" %>
|
|
<%= label_tag "club[sport]", "Sport principale" %>
|
|
<%= select_tag "club[sport]", options_for_select([["Pallavolo", "volleyball"], ["Calcio", "football"], ["Basket", "basketball"]], params.dig(:club, :sport) || "volleyball") %>
|
|
<%= render "shared/branding_fields", record: Club.new(primary_color: "#e53935", secondary_color: "#ffffff"), legend: "Logo e colori societari" %>
|
|
|
|
<h2 class="form-section-title" style="margin-top:24px">Prima squadra</h2>
|
|
<%= label_tag "first_team[name]", "Nome squadra" %>
|
|
<%= text_field_tag "first_team[name]", params.dig(:first_team, :name), required: true, placeholder: "es. Under 15" %>
|
|
|
|
<%= label_tag :plan, "Piano iniziale (per tutta la società)" %>
|
|
<%= select_tag :plan, options_for_select([
|
|
["Free — 1 staff trasmissione + 1 regia per squadra, 1 live", "free"],
|
|
["Premium Light — €40/anno o €5/mese", "premium_light"],
|
|
["Premium Full — €200/anno o €20/mese", "premium_full"]
|
|
], params[:plan] || "free") %>
|
|
<%= submit_tag "Crea società", class: "btn btn-primary" %>
|
|
<% end %>
|
|
</div>
|
|
</section>
|