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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<!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="menu2">
<h2> You are logedin <a href="Muckup index.xhtml"> [logout] </a> </h2>
<hr />
<form action="Muckup login.xhtml" method="post">
<div class="lefta">
<label for="name">Name</label> <input type="text" name="name" id="name" /> <br />
<label for="phone">Phone number</label> <input type="text" name="phone" id="phone" /><br />
<label for="email">e-mail address</label> <input type="text" name="email" id="email" /><br />
</div>
<div class="righta">
<label for="adress">adress</label> <input type="text" name="adress" id="adress" /> <br />
<label for="StartDate">Start Date </label> <input type="text" name="StartDate" id="StartDate" /><br />
<label for="EndDate">End Date</label> <input type="text" name="EndDate" id="EndDate" /> <br />
</div>
<p><input value="add" type="submit" name="add" class="add" /></p>
</form>
<h2> current DB structure </h2>
<table> <!-- muckup tabell -->
<tr> <!-- row one -->
<td> id </td>
<td> Name </td>
<td> Start Date </td>
<td> End Date </td>
<td> Phone Number </td>
<td> E-mail </td>
<td> Adress </td>
<td> remove </td>
</tr> <!-- end of row one -->
<tr> <!-- Row two and up -->
<td> {id} </td>
<td> {name} </td>
<td> {StartDate} </td>
<td> {endDate} </td>
<td> {phone} </td>
<td> {mail} </td>
<td> {adress} </td>
<td>
<form action="Muckup index.xhtml" method="post">
<p>
<input type="submit" value="remove" />
<input type="hidden" value="{id}" />
</p>
</form>
</td>
</tr> <!-- end of row two and up -->
</table>
</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>
|