-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserpage.html
More file actions
82 lines (64 loc) · 2.59 KB
/
userpage.html
File metadata and controls
82 lines (64 loc) · 2.59 KB
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
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Flying Dutchman 8</title>
<link rel="stylesheet" type="text/css" href="userpagestyle.css">
<script type="text/javascript" src="jquery-1.11.1.js"></script>
<script type="text/javascript" src="hideMe.js"></script>
<script type="text/javascript" src="actions.js"></script>
<script type="text/javascript" src="barmenu.js"></script>
<script type="text/javascript" src="language.js"></script>
</head>
<body>
<div>
<img src="resources/beerbar4.png" width="95%">
</div>
<div id="languagebar">
<input type="button" onclick="change_lang(0)" style="background-image: url(resources/UK_Flag.png)">
<input type="button" onclick="change_lang(1)" style="background-image: url(resources/Taiwan_Flag.png)">
<input type="button" onclick="change_lang(2)" style="background-image: url(resources/Sweden_Flag.png)">
</div>
<div id="headline">
<img src="resources/logo.png" width="12%" style="float:left">
<h1> <span id="Title"></span></h1>
</div>
<div class="button" id="searchbar" style="height:35px;line-height:35px;">
<span id="Search"></span>
<input type="text" title="searchfield" id="searchfield" value="" style="width:80%">
<input type="button" value="Search" onclick="search($('#searchfield').val())" style="width: 7%">
</div>
<div id="beerwrapper">
<div style="height: 50px; text-align:center;line-height: 50px;">
<h2><span id="Instruction"></span></h2>
</div>
<div id="beerlist">
</div>
</div>
<div id="cartwrapper">
<div style="height: 50px;line-height: 50px;">
<img src="resources/listicon.png" width="18%" style="float:left">
<span id="Shoppingcart"></span>
</div>
<div>
<button class="action" type="button" onclick="redo()"><span id="Redo"></span></button>
<button class="action" type="button" onclick="undo()"><span id="Undo"></span></button>
</div>
<br>
<div id="cartlist" ondrop="drop(event)" ondragover="allowDrop(event)">
</div>
<br>
<div class="price">
<h3> <span id="PriceTotal"></span> <span id="totalprice"></span> </h3>
</div>
<div id="buy" style="height: 50px;line-height: 50px;">
<span id="Pay"></span>
<img src="resources/pay.png" width="20%" style="float:right">
</div>
</div>
<div id="foot">
© PeiChun Chen, Jesper Middendorff, Johanna Fyrvald 2015 UU User Interface Group 8
</div>
<script>change_lang(0)</script>
</body>
</html>