File: D:/HostingSpaces/PvdBoogaard/indoorski.nl/backup/oude-site/cms/admin/templates/forgotpass.done.tpl
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Installation Wizard</title>
<meta http-equiv="Content-Type" content="text/html; charset={$Charset}" />
<meta http-equiv="pragma" content="no-cache" />
<link rel="SHORTCUT ICON" href="favicon.ico" />
<style type="text/css">
@import url("styles/styles.css");
@import url("styles/tabmenu.css");
@import url("../lib/iselector/iselector.css");
.HelpInfo ul li {
color: red;
}
</style>
<!--[if IE]>
<style type="text/css">
#headermenu li ul {
margin-top: 0px;
margin-left: 2px;
}
#headermenu li li a {
width: 107px;
}
</style>
<![endif]-->
<!--[if IE]>
<style type="text/css">
@import url("styles/ie.css");
</style>
<![endif]-->
<script type="text/javascript" src="../javascript/jquery.js"></script>
<script language="javascript" src="../js.php?f=admin&a=1"></script>
</head>
<body>
<form action="index.php?ToDo=sendPassEmail" method="post" name="frmForgotPass" id="frmForgotPass">
<div id="box">
<table>
<tr>
<td style="border:solid 2px #DDD; padding:20px; background-color:#FFF; width:300px">
<table>
<tr>
<td class="Heading1">
<img src="images/iwp.jpg" />
</td>
</tr>
<tr>
<td>
<div style="padding:10px 0px 5px 0px;">{if $action == 'sent'} {$lang.ForgotPasswordSent} {else} {$lang.ForgotPasswordChanged} {/if}</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
<script type="text/javascript">
$('#frmForgotPass').submit(function() {
if($('#username').val() == '') {
alert('{$lang.NoUsername}');
$('#username').focus();
return false;
}
if($('#newpassword').val() == '') {
alert('{$lang.NoNewPassword}');
$('#newpassword').focus();
return false;
}
// Everything is OK
return true;
});
function sizeBox() {
var w = $(window).width();
var h = $(window).height();
$('#box').css('position', 'absolute');
$('#box').css('top', h/2-($('#box').height()/2)-50);
$('#box').css('left', w/2-($('#box').width()/2));
}
$(document).ready(function() {
sizeBox();
$('#username').focus();
});
$(window).resize(function() {
sizeBox();
});
</script>
</body>
</html>