Sha256: de0fe985767d134cba50f9c0d367950c5d9fa953867efa31e3b63c7a2d3734b6

Contents?: true

Size: 852 Bytes

Versions: 4

Compression:

Stored size: 852 Bytes

Contents

<%= simple_form_for @user, html: {class: 'form-uppercase admin-user-form'} do |f| %>
  <section class='fields-wrapper two-columns'>
    <header>
      <h2>User Info</h2>
    </header>
    <article>
      <%= f.input :name, wrapper_html: {class: 'col-9'} %>
      <%= f.input :name, label: "CPF", input_html: {class: 'cpf'} %>
      <%= f.input :email , wrapper_html: {class: 'col-9'} %>
      <%= f.input :password, wrapper_html: {class: 'col-9'} %>
      <%= f.input :name, label: "Date", input_html: {class: 'date'}%>
    </article>
    <article>
      <%= f.input :description%>
      <%= f.label :active, label: 'Status'%>
      <%= f.input :active %>
      <%= f.input :password, wrapper_html: {class: 'col-9'} %>
    </article>
  </section>

  <footer>
    <%= submit_button f %>
    <%= cancel_action(path: users_path) %>
  </footer>
<% end -%>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
loldesign_publisher-2.0.0 spec/dummy/app/views/users/_form.html.erb
loldesign_publisher-1.5.1 spec/dummy/app/views/users/_form.html.erb
loldesign_publisher-1.5.0 spec/dummy/app/views/users/_form.html.erb
loldesign_publisher-1.4.0 spec/dummy/app/views/users/_form.html.erb