Logo e favicon nel header, partite programmate su web e mobile, reset password, pagine FAQ/sitemap, privacy/termini GDPR e icona Android «Match Live Tv». Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
854 B
Plaintext
19 lines
854 B
Plaintext
<% content_for :title, "Accedi — Match Live TV" %>
|
|
<% content_for :meta_description, "Accesso area riservata per staff e società registrate su Match Live TV." %>
|
|
<% content_for :robots, "noindex, nofollow" %>
|
|
|
|
<section class="auth-page">
|
|
<h1>Accedi</h1>
|
|
<div class="card">
|
|
<%= form_with url: public_login_path do |f| %>
|
|
<%= label_tag :email, "Email" %>
|
|
<%= email_field_tag :email, params[:email], required: true %>
|
|
<%= label_tag :password, "Password" %>
|
|
<%= password_field_tag :password, required: true, autocomplete: "current-password" %>
|
|
<p class="auth-forgot"><%= link_to "Password dimenticata?", public_password_forgot_path %></p>
|
|
<%= submit_tag "Entra", class: "btn btn-primary" %>
|
|
<% end %>
|
|
<p class="auth-footer">Nuovo? <%= link_to "Registrati", public_signup_path %></p>
|
|
</div>
|
|
</section>
|