aboutsummaryrefslogtreecommitdiff
path: root/login/index.html
diff options
context:
space:
mode:
authorUnknown <Alee14498@gmail.com>2017-10-01 00:24:20 -0400
committerUnknown <Alee14498@gmail.com>2017-10-01 00:24:20 -0400
commit78f3c0e9893d36e0ce039c2b79ede8a92ebe468a (patch)
tree8479930f9372a1e9998b6750651565cf52b81ca8 /login/index.html
parentd8ba59582c137de474789690e777d8c029e08fe6 (diff)
downloadwindows8online-78f3c0e9893d36e0ce039c2b79ede8a92ebe468a.tar.gz
windows8online-78f3c0e9893d36e0ce039c2b79ede8a92ebe468a.tar.bz2
windows8online-78f3c0e9893d36e0ce039c2b79ede8a92ebe468a.zip
Adding the code
Diffstat (limited to 'login/index.html')
-rw-r--r--login/index.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/login/index.html b/login/index.html
new file mode 100644
index 0000000..604f919
--- /dev/null
+++ b/login/index.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta http-equiv="x-ua-compatible" content="IE=edge">
+<title>Login to Windows</title>
+<link rel="stylesheet" href="style.css"/>
+<link rel="shortcut icon" href="../favicon.ico"/>
+<script>
+var passwd = 'document.getElementById('passwd')';
+</script>
+</head>
+<body>
+<div id="login">
+ <div id="login_box">
+ <img src="img/user.png" width="200" height="200" />
+ <form>
+ <p>
+ Anonymous User<br />
+ <span>user@email.com</span>
+ </p>
+ <fieldset class="toggle">
+ <input type="password" id="passwd" placeholder="No password required"/>
+ <a href="../start/index.html"><img src="go.png" id="go" onMouseDown="this.src='go-active.png'" onMouseUp="this.src='go.png'"/></a>
+ <img src="eye.png" id="showpwd" onMouseDown="passwd.type='text';this.src='eye-active.png'" onMouseUp="passwd.type='password';this.src='eye.png'" onMouseout="passwd.type='password'"/>
+ </fieldset>
+ <div class="toggle" id="welcome">
+ Welcome
+ </div>
+ <div class="toggle" id="incorrect">
+ <span>Incorrect</span><br />
+ <a href="#" id="back_btn"></a>
+ </div>
+ </form>
+ </div>
+ </div>
+</div> \ No newline at end of file