mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Udated the DOCTYPE to make it W3C standard/compliant. Moved "sorttable.js", "ticker.js" and the "antiClickJack style" from "fbegin.inc" and place them in "head.inc" (where they belong), this may also help the Widescreen package to work. Close BR, INPUT and IMG tags properly, update IMG tags with "alt" and update TABLE tags with "summary". Updated the SCRIPT and STYLE with proper CDATA sections. Updated LINK with the correct types.
28 lines
876 B
PHP
Executable File
28 lines
876 B
PHP
Executable File
<!--
|
|
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; ?>
|