Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools

Generating the Devise Views:

I've been following along just fine before this point. In the previous video I was able to sign into the url http://localhost:3000/users/sign_up. I managed to enter my email address and password and received the conformation message saying that I was successfully signed in. When I got into the next video, after entering the content into the new.html.erb file below:

<div><%= f.label :first_name %><br/> <%f.text_field :first_name%></div>

  <div><%= f.label :last_name %><br/>
      <%f.text_field :last_name%></div>

      <div><%= f.label :profile_name %><br/>
          <%f.text_field :profile_name%></div>

I was unable to get into the /users/sign_up url. Instead I was redirected to the status page(localhost:3000) with a message(NOT an error message) saying "You are already signed in" where the confirmation message that I received earlier was at. I tried to find the file that contains "You are already signed in" but I was unsuccessful. I also don't think the incident of me typing in the code listed above into the new.html.erb file and me unable to get into the /users/sign_up page are connected. I believe the same thing would have happened even if I didn't enter new data into the new.html.erb file because I deleted the code and got the same message again. Just figured I would include that detail. Please help!

1 Answer

Mike Morales
Mike Morales
19,833 Points

Hi Warren -

Were you able to get past this stage? However, I did notice that you are missing some characters in your first, last, and profile names. Make sure that you include all of your opening and closing divs. You also need to include the = signs after the % signs where they are needed as well.