<%= I18n.t('sessions.title') %>
<%= form_tag sessions_path do |form| %>
<%= label_tag :username, I18n.t('activerecord.attributes.user.username') %>
<%= text_field_tag :username, '', autofocus: true, class: 'width-100' %>
<%= label_tag :password, I18n.t('activerecord.attributes.user.password') %>
<%= password_field_tag :password, '', class: 'width-100' %>
<%= submit_tag I18n.t('sessions.sign-in') %>
<% end %>