<div dir="ltr"> So far in my app I have been restricting access to registered users that have created an account by doing: <br><br>get '/dashboard' => sub { <br>if (! defined(session 'username')) { redirect '/'; } } Is <br>                       this okay? I really don't have any special roles to authenicate just need to make <br>                       sure that registered users only get to certain pages -- pages that would only make <br>                       sence if you were a registered user in the first place. Can I forgoe more formal <br>                       and extensive authentication in my case?<br><br></div>