Hello, I have followed this tutorial : https://github.com/NoamB/sorcery/wiki/Simple-Password-Authentication I have to make this form : # app/views/users/_form.html.erb <div class="field"> <%= f.label :password %><br /> <%= f.password_field :password %> </div> <div class="field"> <%= f.label :password_confirmation %><br /> <%= f.password_field :password_confirmation %> </div> Where f is a sort of virtual field. But when I run this I get a error message that the variable f is not known. How can I solve this ? Roelof -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/WCYVAIVWu5oJ. For more options, visit https://groups.google.com/groups/opt_out.
Form_for/form_tag is missing. Am 11.11.2012 18:50 schrieb "roelof" <rwobben-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org>:> Hello, > > I have followed this tutorial : > https://github.com/NoamB/sorcery/wiki/Simple-Password-Authentication > I have to make this form : > > # app/views/users/_form.html.erb > <div class="field"> > <%= f.label :password %><br /> > <%= f.password_field :password %> > </div> > <div class="field"> > <%= f.label :password_confirmation %><br /> > <%= f.password_field :password_confirmation %> > </div> > Where f is a sort of virtual field. > But when I run this I get a error message that the variable f is not known. > > How can I solve this ? > > Roelof > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msg/rubyonrails-talk/-/WCYVAIVWu5oJ. > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Oke, then there is a error in the tutorial. Roelof Op zondag 11 november 2012 19:43:14 UTC+1 schreef Norbert Melzer het volgende:> Form_for/form_tag is missing. > Am 11.11.2012 18:50 schrieb "roelof" <rwo...-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org <javascript:>>: > >> Hello, >> >> I have followed this tutorial : >> https://github.com/NoamB/sorcery/wiki/Simple-Password-Authentication >> I have to make this form : >> >> # app/views/users/_form.html.erb >> <div class="field"> >> <%= f.label :password %><br /> >> <%= f.password_field :password %> >> </div> >> <div class="field"> >> <%= f.label :password_confirmation %><br /> >> <%= f.password_field :password_confirmation %> >> </div> >> Where f is a sort of virtual field. >> But when I run this I get a error message that the variable f is not >> known. >> >> How can I solve this ? >> >> Roelof >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonra...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<javascript:> >> . >> To unsubscribe from this group, send email to >> rubyonrails-ta...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. >> To view this discussion on the web visit >> https://groups.google.com/d/msg/rubyonrails-talk/-/WCYVAIVWu5oJ. >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/mdrKG1Jpac0J. For more options, visit https://groups.google.com/groups/opt_out.
No, there ins Nov error in the Tutorial, it''s just that the snippet you posted is very early in that tutorial if you had completed it before asking then you had found the complete Form in the partial. :-) Am 11.11.2012 19:48 schrieb "roelof" <rwobben-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org>:> Oke, then there is a error in the tutorial. > > Roelof > > Op zondag 11 november 2012 19:43:14 UTC+1 schreef Norbert Melzer het > volgende: > >> Form_for/form_tag is missing. >> Am 11.11.2012 18:50 schrieb "roelof" <rwo...-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org>: >> >>> Hello, >>> >>> I have followed this tutorial : https://github.com/NoamB/** >>> sorcery/wiki/Simple-Password-**Authentication<https://github.com/NoamB/sorcery/wiki/Simple-Password-Authentication> >>> I have to make this form : >>> >>> # app/views/users/_form.html.erb >>> <div class="field"> >>> <%= f.label :password %><br /> >>> <%= f.password_field :password %> >>> </div> >>> <div class="field"> >>> <%= f.label :password_confirmation %><br /> >>> <%= f.password_field :password_confirmation %> >>> </div> >>> Where f is a sort of virtual field. >>> But when I run this I get a error message that the variable f is not >>> known. >>> >>> How can I solve this ? >>> >>> Roelof >>> >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ruby on Rails: Talk" group. >>> To post to this group, send email to rubyonra...@googlegroups.**com. >>> To unsubscribe from this group, send email to rubyonrails-ta...@** >>> googlegroups.com. >>> To view this discussion on the web visit https://groups.google.com/d/** >>> msg/rubyonrails-talk/-/**WCYVAIVWu5oJ<https://groups.google.com/d/msg/rubyonrails-talk/-/WCYVAIVWu5oJ> >>> . >>> For more options, visit https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/opt_out> >>> . >>> >>> >>> >> -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msg/rubyonrails-talk/-/mdrKG1Jpac0J. > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
I have completed that page. I see two forms but they are not the same. The first is this one : # app/views/users/_form.html.erb and the second one is this one : # app/views/user_sessions/_form.html.erb Roelof Op zondag 11 november 2012 21:09:06 UTC+1 schreef Norbert Melzer het volgende:> No, there ins Nov error in the Tutorial, it''s just that the snippet you > posted is very early in that tutorial if you had completed it before asking > then you had found the complete Form in the partial. > :-) > Am 11.11.2012 19:48 schrieb "roelof" <rwo...-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org <javascript:>>: > >> Oke, then there is a error in the tutorial. >> >> Roelof >> >> Op zondag 11 november 2012 19:43:14 UTC+1 schreef Norbert Melzer het >> volgende: >> >>> Form_for/form_tag is missing. >>> Am 11.11.2012 18:50 schrieb "roelof" <rwo...-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org>: >>> >>>> Hello, >>>> >>>> I have followed this tutorial : https://github.com/NoamB/** >>>> sorcery/wiki/Simple-Password-**Authentication<https://github.com/NoamB/sorcery/wiki/Simple-Password-Authentication> >>>> I have to make this form : >>>> >>>> # app/views/users/_form.html.erb >>>> <div class="field"> >>>> <%= f.label :password %><br /> >>>> <%= f.password_field :password %> >>>> </div> >>>> <div class="field"> >>>> <%= f.label :password_confirmation %><br /> >>>> <%= f.password_field :password_confirmation %> >>>> </div> >>>> Where f is a sort of virtual field. >>>> But when I run this I get a error message that the variable f is not >>>> known. >>>> >>>> How can I solve this ? >>>> >>>> Roelof >>>> >>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Ruby on Rails: Talk" group. >>>> To post to this group, send email to rubyonra...@googlegroups.**com. >>>> To unsubscribe from this group, send email to rubyonrails-ta...@** >>>> googlegroups.com. >>>> To view this discussion on the web visit https://groups.google.com/d/** >>>> msg/rubyonrails-talk/-/**WCYVAIVWu5oJ<https://groups.google.com/d/msg/rubyonrails-talk/-/WCYVAIVWu5oJ> >>>> . >>>> For more options, visit https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/opt_out> >>>> . >>>> >>>> >>>> >>> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonra...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<javascript:> >> . >> To unsubscribe from this group, send email to >> rubyonrails-ta...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. >> To view this discussion on the web visit >> https://groups.google.com/d/msg/rubyonrails-talk/-/mdrKG1Jpac0J. >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/RHv-oGPeWX4J. For more options, visit https://groups.google.com/groups/opt_out.