-
Notifications
You must be signed in to change notification settings - Fork 0
/
sendTilEpost.html
78 lines (58 loc) · 2.33 KB
/
sendTilEpost.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
<!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>Send til epost</title>
<style>
.yourTicketInfo{
text-align: center;
font-size: 1.2em;
}
</style>
</head>
<body>
<div id="mainContainer">
<!--NY HEADER MED SØK (husk stylesheet for font awesome-->
<div id="head" class="headerTop">
<a href="alleOpplevelserNarDeg.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">
<div>
<br><br><br><br><br>
<p class="yourTicketInfo">Dine billetter har blitt sendt til:<br><br>
ditt.navn@epost.com<br><br>
Du kan også finne dem under <br> dine billetter på <a href="minFinn.html">Min Finn</a></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();
}
</script>
</body>
</html>