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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>booking</title>
<link rel="stylesheet" type="text/css" href="./css/main.css" />
</head>
<body xmlns="http://www.w3.org/1999/xhtml">
<div class="head"><img src="./img/Logo.png" alt="BooKa´s logo" /></div>
<div class="menu">
<h1> Login </h1>
<hr />
<form action="Muckup login.xhtml" method="post">
<p>
User name: <input type="text" name="userName" /> <br/>
Pass word: <input type="password" name="userPassword" /> <br />
<input type="submit" name="null" />
</p>
</form>
<p>
All registrations are performed by admin.
</p>
</div>
<div id='foot'>
<p>(c) 2009 Gustav Hartvigsson || BooKa Team</p>
<p>
<a href="http://validator.w3.org/check?uri=referer"><img
src="http://www.w3.org/Icons/valid-xhtml11-blue"
alt="Valid XHTML 1.1" height="31" width="88" /></a>
</p>
</div>
</body>
</html>
|