If anyone is wondering, here is the difference between the two different ERB tags:
@sostedia2 жыл бұрын
The Best Channel on planet to learn Rails.
@thriftsimple5613 жыл бұрын
I'm really loving these Chris, thank you so much! I know you're not a VSCode person, but if you're using it for viewer familiarity in things like this you should get the "endwise" extension. It just automatically adds the "end" when you're defining classes, functions, blocks, etc. It'll save you a few seconds each video I imagine. Again, awesome stuff and THANK YOU!
@Evaldas653 жыл бұрын
You saved my butt! The tutorials are simply great, very easy to follow, they're easy to understand. Thank you! :)
@steveariel2 жыл бұрын
If anyone does this tutorial with Rails 7 you need to add data: { turbo: false } to the form_with so it should be
@BurnerStronger Жыл бұрын
Thank you!
@sasidharmuppala Жыл бұрын
Thank you!!!! It did the trick.
@_ShouravChy9 ай бұрын
Thanks bro..
@DevBishwasBh2 жыл бұрын
Thanks a lot for this awesome video. Keep going!
@w1d3r753 жыл бұрын
Really informative. Great tutorial as well :D
@anuragnimbalkar87093 жыл бұрын
Boi this channel is great! Subbed!
@marcellbalint12053 жыл бұрын
Helped me out a ton, thank you very much :D
@bishnusukla37882 жыл бұрын
Amazing explanations!! Thank you so much for creating the playlist. Where can I find the source code for this playlist?
@GorailsTV2 жыл бұрын
On our website, this series is at gorails.com/start
@ohmegatech666 Жыл бұрын
I don't understand how you know to type "sign_up_path" in the form_with helper when the url listed is just "sign_up". When I do rails routes, the phrase "sign_up_path" isn't written anywhere. I even used VSCode's Find in Files feature (Ctrl Shift F) and searched in every file in the project for the string "sign_up_path" and it doesn't appear in any files except where we wrote it specifically.
@GorailsTV Жыл бұрын
The helper name leaves out _path because you can also add _url to the end and it will do the same thing but include the full url instead of just the path after the domain. This will make for a good video too!
@rishabhmalhotra22253 жыл бұрын
Sometimes it is suggested to use form with or form for or form tag. Which to use when?
@GorailsTV3 жыл бұрын
Always use form_with 👍
@graffist448 Жыл бұрын
So when you're attempting to reset a password we are careful to not to inform a hacker that the email address exists. But when creating a new user, what can we say or do if they are attempting to create an account with the same email address? This happens at times when people forget they've already signed up before and still have an account.
@italozell Жыл бұрын
The icon of the form(text, password) on the right is not showing up on my page. How can I do to put it?
@italozell Жыл бұрын
Hi man, which extension are you using to autocomple your codes on VsCode?
@adimihaila Жыл бұрын
Hi! Do you have this on github?
@ohmegatech666 Жыл бұрын
If anyone else is getting the error "Error: Form responses must redirect to another location", you have to add this to your form_with tag properties: data: {turbo: false}
@IctWilsons Жыл бұрын
Thank you!
@mayankdharaskar52332 жыл бұрын
I am not able to get both the routes for sign_up (only it is accessing get request), what should i do?
@Nathan00at78Uuiu2 жыл бұрын
why not use devise
@GorailsTV2 жыл бұрын
Because people need to learn how devise works inside
@Nathan00at78Uuiu2 жыл бұрын
@@GorailsTV as I kept watching more I realized the benefit of seeing what devise does. I also like your video on creating a web server. I’ve been thinking I would like to know what all goes into creating a web framework like rails for the backend. Great videos!