Re: (Another) Authentication Question

2016-04-23 Thread knbk
Hi Jason, Your form inputs in the login form are missing a name attribute, so the data you input into the form won't be sent to the server on submit. Without any data, the form is invalid, and is redisplayed. If you add the correct name attribute to the input tags, your form should work as expe

(Another) Authentication Question

2016-04-21 Thread Jason Wolosonovich
Hello All, I'm completely new to Django and I've been following along with the excellent video series from CodingEntrepreneurs on YouTube and applying what I can to my project. I'm stuck on the authentication process. I don't believe that the request is being passed to my template correctly bec