Nice work @George and @Teodor!
I created a user registration system with login functionality and security restrictions in about 1 hour following your guide, with no prior knowledge of how it worked.
One thing I noticed, and perhaps it was user error, was that I wasn’t getting data back from my query in Step 17 until I went in and added the columns that I wanted returned, thereby changing my SELECT *
to a SELECT UserID, Name, EmailAddress FROM Users WHERE UserID = :security_identity
I thought I would add this observation just in-case anyone else runs into the same thing.