This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
magicka/dist/www/header.tpl

38 lines
951 B
Smarty
Raw Normal View History

<HTML>
<HEAD>
2016-08-17 00:55:03 +00:00
<TITLE>Magicka BBS</TITLE>
2018-01-21 05:02:21 +00:00
<link rel="stylesheet" type="text/css" href="@@WWW_URL@@static/style.css">
2017-03-30 22:30:54 +00:00
<meta charset="utf-8">
<script language='javascript'>
function validate () {
if(document.getElementById('recipient').value=="") {
alert("To can not be empty.");
return false;
}
if(document.getElementById('subject').value=="") {
alert("Subject can not be empty");
return false;
}
if(document.getElementById('body').value=="") {
alert("Can't send an empty message!");
return false;
}
return true;
}
</script>
</HEAD>
<BODY>
2016-08-17 00:55:03 +00:00
<div class="header">
2018-01-21 05:02:21 +00:00
<img src="@@WWW_URL@@static/header.png" alt="Magicka BBS" />
2016-08-17 00:55:03 +00:00
</div>
2016-08-19 05:23:04 +00:00
<div class="menu">
<ul>
2018-01-21 05:02:21 +00:00
<li><a href="@@WWW_URL@@">Home</a></li>
<li><a href="@@WWW_URL@@last10/">Last 10 Callers</a></li>
<li><a href="@@WWW_URL@@email/">Email</a></li>
<li><a href="@@WWW_URL@@msgs/">Conferences</a></li>
2016-08-19 05:23:04 +00:00
</ul>
</div>
2016-08-17 00:55:03 +00:00
<hr />