blob: 78c97621c159167b3316ffa02063fedc4cf12446 [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright (c) 2006 Eclipse Foundation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Wayne Beaton (Eclipse Foundation)- initial API and implementation
*******************************************************************************/
#*****************************************************************************
#
# restricted.php
#
# Author: Wayne Beaton
# Date: February 16, 2006
#
# Description:
# Displays a message telling the user that they're not allowed to
# use the page.
#****************************************************************************
include("scripts/header.php");
?>
<h1>Restricted</h1>
<p>Use of the resources management pages is currently restricted to authorized users only.</p>
<?php
include("scripts/footer.php");
?>