login page for staff members only

Shaz

Member
Jan 8, 2015
57
1
i wanted to put my hotel on maintenance while i edit stuff, is there a way that i can have login page for just staff members only rank 4+ for eg

or is there a way i can change index page to users rank 4+ can login to the hotel only?

ive seen it on a hotel a while back but haven't seen since then or haven't seen any posts about creating the page etc
 

Janzeer

Headmaster Of Hogwart's
Apr 30, 2012
522
47
Add this script before your <!doctype html>
PHP:
if($_SESSION['user']['rank'] >= 4){
and this code after your </html>
PHP:
} else {die('Sorry, the hotel is under maintenance.');}
you can redirect the page to a maintenace page if you want with this code in die()
PHP:
header('Location: {url}/maintenance');
 

Users who are viewing this thread

Top