I just need to protect a few pages that can edit the entries in my database. I will only need a single "User Account" for myself. Should I go through the trouble of creating a User model and setting "proper" user authentication up? Or is it okay to just hard code it on the controller functions that will require protection?
For the record, I would normally never hardcode user authentication for a site. I am only asking if it is "as secure" to hardcode since the site won't even have user accounts. I only need to protect a handfull of pages, and am looking for the easiest/quickest way to accomplish this.
Thanks for any input!