-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (33 loc) · 1.12 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html manifest="cache.manifest">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Pond Next</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.css" />
<link rel="stylesheet" href="css/webpond2.css" />
<link rel="apple-touch-icon" href="img/intraneia.png" />
<script src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.js"></script>
<script src="js/webpond2.js"></script>
</head>
<body>
<div data-role="page">
<header data-role="header">
<h1>Pond Next</h1>
</header>
<div data-role="content">
<form>
<label for="username">User:</label>
<input type="text" id="username" />
<label for="password">Password:</label>
<input type="password" id="password" />
<input type="button" onclick="auth()" value="login" />
</form>
</div>
<footer data-role="footer">
<h4>Copyright 2010 - Intraneia<br />Pond service by Sapo</h4>
</footer>
</div>
</body>
</html>