-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (60 loc) · 2.48 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/frontPage.css">
<link rel="stylesheet" href="css/mediaqueries/mediaqueries.css">
<link rel="stylesheet" href="css/mediaqueries/frontPageMediaQueries.css">
<title>Lej cykler i dag - BikeShare</title>
<header>
<div class="inner-header">
<div class="logoContainer">
<img class="logo" src="images/logo.png" alt="Logo">
<a href="index.html">
<p class="title">BikeShare</p>
</a>
</div>
<div class="pc-header">
<ul class="navigationList">
<li class="navigationLi"><a href="index.html">Forside</a></li>
<li class="navigationLi"><a href="contact.html">Kontakt</a></li>
<li class="navigationLi"><a href="faq.html">FAQ</a></li>
<li class="navigationLi"><a href="myProfile.html">Min profil</a></li>
</ul>
</div>
</div>
</header>
</head>
<body onload="checkActiveRent()">
<div class="imageBar">
<div class="welcomeTop">
<p class="welcomeTitle">Velkommen tilbage <span id="firstnameLoggedIn"></span></p>
<p class="goToProfile"><a href="myProfile.html">Gå til din profil</a></p>
</div>
<div class="buttonsBottom">
<div class="activeRents">
<p class="activeRentsTitle">Aktive udlejninger:</p>
<p class="activeRentsBike" id="activeRentText"></p>
</div>
<div class="rentBikenOurBikesButtonContainer">
<div class="rentBikeButton">
<a href="locations.html">
<p class="rentBikeButtonText">Lej en cykel</p>
</a>
</div>
<div class="ourbikesButton">
<a href="bikeOverview.html">
<p class="ourBikesButtonText">Vores cykler</p>
</a>
</div>
</div>
</div>
</div>
</body>
</html>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="javascript/main.js"></script>
<script src="javascript/index.js"></script>