2016-01-10 01:53:48 +01:00
|
|
|
|
<!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>-->
|
2016-01-15 03:30:25 +01:00
|
|
|
|
<script src="chrome://global/content/aboutHome.js" type="application/x-javascript"></script>
|
2016-01-10 01:53:48 +01:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="logoContainer">
|
|
|
|
|
<img src="chrome://global/content/logo.png" id="rzLogo" alt="RetroZilla Logo">
|
|
|
|
|
</div>
|
|
|
|
|
<div id="searchContainer">
|
2016-01-15 03:30:25 +01:00
|
|
|
|
<!-- 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">
|
2017-10-12 20:25:47 +02:00
|
|
|
|
<p id="updateNotifier">
|
|
|
|
|
new version available
|
|
|
|
|
</p>
|
2016-01-15 03:30:25 +01:00
|
|
|
|
<p id="rzFooterText">
|
2016-04-22 06:57:07 +02:00
|
|
|
|
<a href="http://retrozilla.no-ip.org" class="rzFooterlink">
|
2016-01-15 03:30:25 +01:00
|
|
|
|
RetroZilla
|
|
|
|
|
</a>
|
|
|
|
|
-
|
2017-10-06 22:13:43 +02:00
|
|
|
|
Copyright 1998-<span id="currentYear"></span>,
|
2016-01-15 03:30:25 +01:00
|
|
|
|
<a href="about:credits" class="rzFooterLink">
|
|
|
|
|
Contributors
|
|
|
|
|
</a>
|
|
|
|
|
</p>
|
2016-01-10 01:53:48 +01:00
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|