File size: 1,744 Bytes
a01128b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
<html>
<head>
<style>
</style>
<title>
This area is password protected [401]
</title>
<style type="text/css">
#login {
float: none;
text-align: left;
width: 410px;
margin: 0px auto;
margin-top: 134px;
background: #171717;
border: 4px solid #222222;
font-family: arial;
color: white;
padding: 0 0 15px 25px;
opacity: .85;
filter: alpha(opacity=85);
}
#title {
font-size: 24px;
font-weight: bold;
display: block;
width: 385px;
border-bottom: 1px solid #888;
margin-bottom: 30px;
}
#submit-password {
background: #E9E9E9;
color: #161616;
font-size: 18px;
font-weight: bold;
padding: 4px;
margin-left: 5px;
}
#p {
border: 2px solid red;
font-size: 18px;
padding: 5px;
width: 305px;
}
.error-message {
font-size: 14px;
color: red;
}
</style>
<!--[if IE]>
<style type="text/css">
#login {
padding: 25px 25px 15px 25px;
}
#p {
width: 270px;
height: 35px;
}
#submit-password {
padding: 0px;
margin-left: 5px;
height: 38px;
position: relative;
top: 2px;
}
</style>
<! [endif]-->
</head>
<body onload="document.getElementById('p').focus()" style="background: #F2F2F2; text-align: center; margin: 0; padding: 0;">
<div id="login">
<p id="title">
This area is password protected
</p>
<form id="password-form" method="post">
<p style="font-size: 14px;">
Please enter the password below
</p>
<input id="p" name="p" title="p" type="password">
<input id="submit-password" type="submit" value="Login">
<input name="redirect" type="hidden" value="/flavors/archives/04-2013">
<input name="u" type="hidden" value="weebs">
</form>
</div>
</body>
</html>
|