cheatsheets/simple_form.md

20 lines
309 B
Markdown
Raw Permalink Normal View History

2014-02-25 10:32:14 +00:00
---
title: SimpleForm
tags: [WIP]
2014-02-25 10:32:14 +00:00
---
### Inputs
2015-04-17 19:36:37 +00:00
```ruby
2014-02-25 10:32:14 +00:00
<%= f.input :email, required: false, autofocus: true %>
<%= f.input :password, required: false %>
<%= f.input :remember_me, as: :boolean %>
<%= f.button :submit, "Sign in" %>
2015-04-17 19:36:37 +00:00
```
2014-02-25 10:32:14 +00:00
### Adding a wrapper
2015-04-17 19:36:37 +00:00
```ruby
simple_form_for @x, wrapper: :small
2015-04-17 19:36:37 +00:00
```