text_field_tag rails

<%= form_tag('/submit', method: 'post') do %>
  <%= label_tag(:username, 'Username:') %>
  <%= text_field_tag(:username) %>

  <%= label_tag(:password, 'Password:') %>
  <%= password_field_tag(:password) %>

  <%= submit_tag('Submit') %>
<% end %>