tabletop-companion/app/views/sessions/new.html.erb

17 lines
360 B
Plaintext
Raw Normal View History

2024-04-21 14:01:10 +00:00
<% content_for :title, t(".log_in") %>
<h1><%= t(".log_in") %></h1>
<section class="inset">
<%= form_with url: sessions_path do |f| %>
<%= f.label :username %>
2024-05-29 07:24:21 +00:00
<%= f.text_field :username, required: true %>
2024-04-21 14:01:10 +00:00
<%= f.label :password %>
2024-05-29 07:24:21 +00:00
<%= f.password_field :password, required: true %>
2024-04-21 14:01:10 +00:00
<%= f.submit t(".log_in") %>
<% end %>
</section>