-
Notifications
You must be signed in to change notification settings - Fork 0
/
betalingsKonsertMaateKent.html
94 lines (75 loc) · 3.49 KB
/
betalingsKonsertMaateKent.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
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
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Hvordan ønsker du å betale?</title>
</head>
<body>
<div id="mainContainer">
<!--NY HEADER MED SØK (husk stylesheet for font awesome-->
<div id="head" class="headerTop">
<a href="konserterNarDeg.html">
<i class="fa fa-map-marker" aria-hidden="true" style="position: absolute; color: #ffffff; font-size: 26px; padding-top: 33px; margin-left: 260px; width: 20px; float: right; z-index: 98;"></i>
</a>
<form style="padding-top: 30px; float: right">
<input type="search" placeholder="Search" style="position: relative; z-index: 99;">
</form>
<!--PIL TILBAKE-->
<a onclick="goBack()">
<i class="fa fa-angle-left" aria-hidden="true" style="position: absolute; color: #ffffff; font-size: 24px; padding-top: 33px; padding-left: 10px; width: 20px; float: left; z-index: 2;"></i>
</a>
<!--END PIL TILBAKE-->
<img src="img/finnLogo.png" class="finnLogo" style="position: absolute; padding-left: 125px; z-index: 1;">
</div>
<!--END NY HEADER MED SOK-->
<div id="mainContent">
<h3 class="priceTitle">Dine billetter</h3>
<div class="priceBox">
<p>Kent 2 voksne<br>
635.00 NOK x 2<br>
-----------------------<br>
Totalt 1270.00 NOK<br>
Hvor av moms 127.00 NOK</p>
</div><br>
<div class="wayOfPayment">
<h4 class="priceTitle">Betalingsmåte</h4>
<form>
<input type="radio" name="payment" value="kort" checked> Kort<br>
<a href="betalsDetaljerKort.html" class="showDetailsPayment">Vis detaljer</a><br><br>
<input type="radio" name="payment" value="payPal"> PayPal <br>
<a href="betalDetaljerPaypal.html" class="showDetailsPayment">Vis detaljer</a><br><br>
</form>
</div><br>
<div class="buyBtnDiv">
<input class="buyBtn" onclick="location.href='TackForKjopKent.html';" type="submit" value="Bekreft kjøp">
</div>
</div>
<div id="foot">
<a href="index.html"><img class="navIcons" src="img/hjem_nav.png"></a>
<a href="sisteNytt.html"><img class="navIcons" src="img/sisteNytt_nav.png"></a>
<a href="minFinn.html"><img class="navIcons" src="img/minFinn_nav.png"></a>
<a href="nyAnnonse.html"><img class="navIcons" src="img/nyAnnonse_nav.png"></a>
</div>
</div>
<script>
function goBack() {
window.history.back();
}
/* Toggle between adding and removing the "active" and "show" classes when the user clicks on one of the "Section" buttons. The "active" class is used to add a background color to the current button when its belonging panel is open. The "show" class is used to open the specific accordion panel */
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].onclick = function(){
this.classList.toggle("active");
this.nextElementSibling.classList.toggle("show");
}
}
</script>
</body>
</html>