blob: 6ee1028ec913b2b1b36a6c83f49e33ed34ff40df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!--
pfSense_MODULE: footer
-->
</div> <!-- Right DIV -->
</div> <!-- Content DIV -->
<div id="footer">
<a target="_blank" href="<?=$g['product_website_footer']?>" class="redlnk"><?=$g['product_name']?></a> is ©
<?=$g['product_copyright_years']?> by <a href="<?=$g['product_copyright_url']?>" class="tblnk"><?=$g['product_copyright']?></a>. All Rights Reserved.
[<a href="/license.php" class="tblnk">view license</a>]
</div> <!-- Footer DIV -->
</div> <!-- Wrapper Div -->
<?php outputJavaScriptFileInline("/usr/local/www/themes/{$g['theme']}/bottom-loader.js");
/* Disable form autocomplete on all but the login screen. */
if (basename($_SERVER["SCRIPT_FILENAME"] != "index.php") && !$allowautocomplete): ?>
<script type="text/javascript">
//<![CDATA[
(function ($) {
$("input").attr("autocomplete","off");
})(jQuery);
//]]>
</script>
<?php endif; ?>
|