I am trying to style a log in menu that is created by this snippet i have here (generated by javascript):
<script>
var password;
var correctpassword = "DaNiWeB";
password = prompt ('Enter the Correct Password to view this page:','');
if (password==correctpassword)
alert('Thank you for properly entering the password, you may now access this page');
else
{
window.location="http://www.daniweb.com"
}
</script>
How do i style this?