Recreantenbeheer

Gebruikersnaam
Wachtwoord

   

function CheckForm()
{
if(document.frmLogin.username.value == “”)
{
alert(“Gebruikersnaam is niet ingevuld!”);
document.frmLogin.username.focus();
return false;
}
if(document.frmLogin.password.value == “”)
{
alert(“Wachtwoord is niet ingevuld!”);
document.frmLogin.password.focus();
return false;
}
document.frmLogin.submit();
return true;
}
function ResetForm()
{
document.frmLogin.username.value = ”;
document.frmLogin.password.value = ”;
return false;
}

a.btnLogin{
width: 74px;
height: 21px;
display: block;
background-image:url(‘https://www.p-centrum.nl/wp-content/uploads/2012/09/knop-inloggen2.png’);
color: White;
font-weight: normal;
text-decoration: none;
float: left;
}
a.btnReset{
width: 74px;
height: 21px;
display: block;
background-image:url(‘https://www.p-centrum.nl/wp-content/uploads/2012/09/knop-annuleren2.png’);
color: White;
font-weight: normal;
text-decoration: none;
float: right;
}