I have a website I'm building using Parse as the backend and I want to restrict access to particular URLs (technically URIs) to users that don't have administrator access. As of right now, when users try to log in, their password is checked against the hashed password in the server.
However, if I only want administrators to have access to http://mywebsite.com/secret.html and only once they've logged in, how I do that? Right now anyone can just go to that url, authenticated or not.
Edit: This site has no accounts other than the administrator ones. It's supposed to be anonymous.