Skip to content

Commit

Permalink
Create logon.html
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiodeyemi committed May 2, 2013
1 parent df7381f commit 0447a44
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions public/logon.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<!DOCTYPE html>
<html>
<head>
<script src="jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<link rel="stylesheet" href="css/modern.css" />
<link rel="stylesheet" href="css/theme-dark.css" />
<style type="text/css">
.metrouicss {
background-color:#4A0093;
}
#pwordbox {
position: absolute;
height: 100px;
width: 100px;
left: 50%;
top: 35%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
}
#imgcont {
position: absolute;
left: -175%;
top: 50%;
transform: translate(-50%, -10%);
-webkit-transform: translate(-50%, -10%);
-moz-transform: translate(-50%, -10%);
-ms-transform: translate(-50%, -10%);
}
#pboxcont {
position: absolute;
left: 0%;
top: 100%;
/*
transform: translate(-50%, -10%);
-webkit-transform: translate(-50%, -10%);
-moz-transform: translate(-50%, -10%);
-ms-transform: translate(-50%, -10%);
*/}
#pwordhint {
color:#E86C19;
font-size:17.5px;
}
</style>
</head>
<body class="metrouicss">
<div id="pwordbox" >
<div id="imgcont">
<img src="WIN8.png" />
</div>
<div id="fieldcont">
<div id="pboxcont">
<h1 style="color:white;">&lt;User&gt;</h1>
<div class="input-control password span4" id="pworddiv">
<input type="password" />
<button class="btn-reveal"></button>
</div>
<div id="pwordhint">
Hint: &lt;Hint&gt;
</div>
</div>
</div>
</body>
</html>

0 comments on commit 0447a44

Please sign in to comment.