RetroZilla/xpfe/global/resources/content/aboutHome.html
2018-06-26 01:25:14 -04:00

38 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>RetroZilla Home</title>
<link rel="stylesheet" type="text/css" href="chrome://global/content/aboutHome.css">
<!--<script src="aboutHome.js"></script>-->
<script src="chrome://global/content/aboutHome.js" type="application/x-javascript"></script>
</head>
<body>
<div id="logoContainer">
<img src="chrome://global/content/logo.png" id="rzLogo" alt="RetroZilla Logo">
</div>
<div id="searchContainer">
<!-- add input box with a keypress event for the enter key to trigger submit button -->
<input type="text" name="rzSearch" id="rzSearch" onkeydown = "if (event.keyCode == 13)
document.getElementById('rzSearchSubmit').click()">
<button id="rzSearchSubmit" onClick="rzSearch();">Search</button>
</div>
<div id="rzFooter">
<p id="updateNotifier">
<a href="https://github.com/rn10950/retrozilla/releases/latest">
New RetroZilla Version Available
</a>
</p>
<p id="rzFooterText">
<a href="https://rn10950.github.io/RetroZillaWeb/" class="rzFooterlink">
RetroZilla
</a>
-
Copyright 1998-<span id="currentYear"></span>,
<a href="about:credits" class="rzFooterLink">
Contributors
</a>
</p>
</div>
</body>
</html>