forked from jlongster/mozilla.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
403.html
22 lines (15 loc) · 1.22 KB
/
403.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
$html_title = '403: Access Forbidden';
$page_title = '403: Access Forbidden';
$menu = array(
'id' => 'default',
);
require_once "{$config['file_root']}/includes/header.inc.php"
?>
<p>You don't have permission to access:</p>
<pre class="filename"><?php echo htmlentities($_SERVER['REQUEST_URI'], ENT_QUOTES, 'UTF-8'); ?></pre>
<p>If you feel that you should have access to this resource, please <a id="report-bug-link" href='https://bugzilla.mozilla.org/enter_bug.cgi?product=Websites&component=www.mozilla.org&format=__default__&short_desc=%5B403%5D%20link%20to%20http%3A%2F%2Fwww.mozilla.org<?php echo rawurlencode($_SERVER['REQUEST_URI']); ?>&rep_platform=All&op_sys=All&bug_file_loc=<?php echo rawurlencode($_SERVER['HTTP_REFERER']); ?>'>file a bug</a> to let us know. (If you don't have an account, you will need to <a href="https://bugzilla.mozilla.org/createaccount.cgi">register with Bugzilla</a> to file a bug.)</p>
<p>If you are looking for specific information on the site, you can use the links or the <a href="#" onClick="document.getElementById('q').focus()">search Mozilla</a> feature at the top to find the document.</p>
<?
require_once "{$config['file_root']}/includes/footer.inc.php"
?>