Open up app/views/layouts/application.html.erb and add:
<% if notice %>
<p class="alert alert-success"><%= notice %></p>
<% end %>
<% if alert %>
<p class="alert alert-danger"><%= alert %></p>
<% end %>
right above
Open up app/views/ideas/show.html.erb and remove the line that says:
Do the same for app/views/comments/show.html.erb and app/views/ideas/show.html.erb. These lines are not necessary as we’ve put the notice in the app/views/layouts/application.html.erb file.
4. Setup the User model
We’ll use a bundled generator script to create the User model.
Don't forget to restart your rails server
Coach: Explain what user model has been generated. What are the fields?
5. Create your first user
Now that you have set everything up you can create your first user. Devise creates all the code and routes required to create accounts, log in, log out, etc.