Finished phase005
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user