Files
bionickatana 0826d267f2
CI / scan_ruby (push) Failing after 1m5s
CI / scan_js (push) Failing after 6s
CI / lint (push) Failing after 1m29s
Finished phase005
2026-09-16 15:34:50 -06:00

30 lines
738 B
Plaintext

<main>
<p><%= notice %></p>
<p><%= alert %></p>
<h1>Identify yourself</h1>
<p>Enter the current access key along with your name and email.</p>
<%= form_with url: session_path do |form| %>
<div>
<%= form.label :name, "User name" %><br>
<%= form.text_field :name, value: params[:name], required: true, autocomplete: "name" %>
</div>
<div>
<%= form.label :email %><br>
<%= form.email_field :email, value: params[:email], required: true, autocomplete: "email" %>
</div>
<div>
<%= form.label :key, "Access key" %><br>
<%= form.text_field :key, required: true, autocomplete: "off" %>
</div>
<div>
<%= form.submit "Identify" %>
</div>
<% end %>
</main>