-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 930 Bytes
/
index.html
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Combined username and password</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script src="media/js/jquery.magicinput.js"></script>
<link rel="stylesheet" href="media/css/style.css" />
<script>
jQuery(document).ready(function()
{
jQuery('#magiclogin-container').magicLogin();
});
</script>
</head>
<body>
<article>
<section class="magic-login">
<div id="magiclogin-container">
<label><span>Username</span><input id="username" type="text" value="" placeholder="Username"></label>
<label><span>Password</span><input id="password" type="password" value="" placeholder="Password"></label>
<input class="submit" type="submit" value="Sign In">
</div>
</section>
</article>
</body>
</html>