Last active
December 17, 2015 22:48
-
-
Save hfm/5684101 to your computer and use it in GitHub Desktop.
Rails Tutorial Chap 7 memo.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Listing 7.23. Code to display error messages on the signup form. | |
| <% provide(:title, 'Sign up') %> | |
| <h1>Sign up</h1> | |
| <div class="row"> | |
| <div class="span6 offset3"> | |
| <%= form_for(@user) do |f| %> | |
| - <%= render 'shared/error_messages' %> | |
| + <%= render 'shared/error_messages' if @user.errors.any? %> | |
| . | |
| . | |
| . | |
| <% end %> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment