cheatsheets/simple_form.md

21 lines
328 B
Markdown

---
title: SimpleForm
layout: 2017/sheet
tags: [WIP]
---
### Inputs
```ruby
<%= f.input :email, required: false, autofocus: true %>
<%= f.input :password, required: false %>
<%= f.input :remember_me, as: :boolean %>
<%= f.button :submit, "Sign in" %>
```
### Adding a wrapper
```ruby
simple_form_for @x, wrapper: :small
```