/booka/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/booka/trunk
11 by Gustav Hartvigsson
merging Neo to trunk. freezing neo branshs.
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
<head>
4
	<title>booking</title>
5
	<link rel="stylesheet" type="text/css" href="./css/main.css" />
6
</head>
7
8
<body xmlns="http://www.w3.org/1999/xhtml">
9
	<div class="head"><img src="./img/Logo.png" alt="BooKa´s logo" /></div>
10
	
11
	<div class="menu2">
12
		 <h2> You are logedin <a href="Muckup index.xhtml"> [logout] </a> </h2>
13
		 <hr />
14
		 <form action="Muckup login.xhtml" method="post">
15
		 	<div class="lefta">
16
		 		<label for="name">Name</label> <input type="text" name="name" id="name" /> <br />
17
		 		<label for="phone">Phone number</label> <input type="text" name="phone" id="phone" /><br />
18
		 		<label for="email">e-mail address</label> <input type="text" name="email" id="email" /><br />
19
		 	</div>
20
		 	<div class="righta">
21
		 		<label for="adress">adress</label> <input type="text" name="adress" id="adress" /> <br />
22
		 		<label for="StartDate">Start Date </label> <input type="text" name="StartDate" id="StartDate" /><br />
23
		 		<label for="EndDate">End Date</label> <input type="text" name="EndDate" id="EndDate" /> <br />
24
		 		</div>
25
		 	<p><input value="add" type="submit" name="add" class="add" /></p>
26
		</form>
27
		 
28
		 <h2> current DB structure </h2>
29
		 
30
		<table> <!-- muckup tabell -->
31
			<tr> <!-- row one -->
32
				<td> id </td>
33
				<td> Name </td>
34
				<td> Start Date </td>
35
				<td> End Date </td>
36
				<td> Phone Number </td>
37
				<td> E-mail </td>
38
				<td> Adress </td>
39
				<td> remove </td>
40
			</tr> <!-- end of row one -->
41
			<tr> <!-- Row two and up -->
42
				<td> {id} </td>
43
				<td> {name} </td>
44
				<td> {StartDate} </td>
45
				<td> {endDate} </td>
46
				<td> {phone} </td>
47
				<td> {mail} </td>
48
				<td> {adress} </td>
49
				<td>
50
					<form action="Muckup index.xhtml" method="post">
51
						<p>
52
							<input type="submit" value="remove" />
53
							<input type="hidden" value="{id}" />
54
						</p>
55
					</form>
56
				</td>
57
			</tr> <!-- end of row two and up -->
58
		</table>
59
		 
60
	</div>
61
	
62
	
63
	<div id='foot'>
64
	<p>(c) 2009 Gustav Hartvigsson || BooKa Team</p>
65
	<p>
66
		<a href="http://validator.w3.org/check?uri=referer"><img
67
		src="http://www.w3.org/Icons/valid-xhtml11-blue"
68
		alt="Valid XHTML 1.1" height="31" width="88" /></a>
69
	</p>
70
</div>
71
</body>
72
</html>