Sha256: 9f25ce4e159d9e546507afdfa45a3e21909792b725355e241210741ff42af238

Contents?: true

Size: 1.47 KB

Versions: 9

Compression:

Stored size: 1.47 KB

Contents

<%= form_tag nil, method: :get do %>
  <div class="field">
    <%= label_tag :text_field %>
    <%= text_field_tag :text_field, ' ' %> <!-- The space is a Chrome workaround.  Don't do that in practice -->
  </div>

  <div class="field">
    <%= label_tag :text_field %>
    <%= text_field_tag :text_field, "Locked", class: 'locked' %>
  </div>


  <div class="field">
    <%= label_tag :password_field %>
    <%= password_field_tag :password_field %>
  </div>

  <div class="field">
    <%= label_tag :date_field %>
    <%= date_field_tag :date_field %>
  </div>

  <div class="field">
    <%= label_tag :select %>
    <%= select_tag :select, options_for_select(['Item 1', 'Item 2']) %>
  </div>

  <div class="field">
    <%= label_tag :text_area %>
    <%= text_area_tag :text_area %>
  </div>

  <div class="field">
    <%= label_tag :file_field %>
    <%= file_field_tag :file_field %>
  </div>

  <div class="field">
    <%= check_box_tag :check_box %>
    <%= label_tag :check_box %>

    <%= check_box_tag :check_box %>
    <%= label_tag :check_box %>
  </div>

  <div class="field">
    <%= radio_button_tag :example, :radio_button %>
    <%= label_tag :radio_button %>

    <%= radio_button_tag :example, :radio_button %>
    <%= label_tag :radio_button %>
  </div>

  <div class="actions">
    <%= submit_tag 'Submit' %>
    <%= submit_tag 'Warn', class: 'warn' %>
    <%= link_to "Alert", "#", class: 'button alert' %>      <!-- link with class "button" looks the same. -->
  </div>

<% end %>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
dfm_web-2.0.6 spec/dummy/app/views/application/_form.html.erb
dfm_web-2.0.5 spec/dummy/app/views/application/_form.html.erb
dfm_web-2.0.4 spec/dummy/app/views/application/_form.html.erb
dfm_web-2.0.3 spec/dummy/app/views/application/_form.html.erb
dfm_web-2.0.2 spec/dummy/app/views/application/_form.html.erb
dfm_web-2.0.1 spec/dummy/app/views/application/_form.html.erb
dfm_web-2.0.0 spec/dummy/app/views/application/_form.html.erb
dfm_web-1.0.7 spec/dummy/app/views/application/_form.html.erb
dfm_web-1.0.6 spec/dummy/app/views/application/_form.html.erb