forked from Lekesoldat/DroneLOAN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
97 lines (79 loc) · 2.69 KB
/
contact.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
95
96
97
<!--
FILE NAME: contact.html
WRITTEN BY: Andreas Amundsen
WHEN: October 2018
PURPOSE: Provide a easy way for the costumer to contact droneLOAN
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact us</title>
<link rel="stylesheet" href="./styles/style.css">
<link rel="shortcut icon" type="image/png" href="./img/misc/droneIcon.png">
</head>
<body>
<header>
<nav id="navigation"></nav>
</header>
<section id="content" class="container">
<div class="row">
<div class="col-12">
<!-- Header message -->
<p class="contactCenterMessage contactStyleMessage">
We strive to deliver the best experience for our customers. If you have any complaints or inquiries, please
do not hesitate to contact us.
</p>
</div>
</div>
<div class="row">
<div class="col-6 contactWide">
<!-- Contact form -->
<form id="contactUs">
<label>
<input type="text" placeholder="First name" required>
</label>
<label>
<input type="email" placeholder="E-mail" required>
</label>
<label>
<textarea id="contactInquiryInput" rows="21" placeholder="Your inquiry" required></textarea>
</label>
<input type="submit" value="Submit" class="smallButton">
</form>
</div>
<!-- Empty collumn -->
<div class="col-1"></div>
<div class="col-5 contactWide">
<!-- Contact information -->
<div class="contactCenterMessage" id="contactInformationBox">
<h4>Contact us</h4>
<p>Phone - 00 47 98 899 724</p>
<p>Email - [email protected]</p>
</div>
<!-- Google Maps API integration -->
<div id="mapsWrapper">
<div id="googleMap"></div>
</div>
<!-- Display address below Google Map -->
<p class="contactCenterMessage">Høgskoleringen 1, 7491 Trondheim</p>
</div>
</div>
<div class="row">
<div class="col-12">
<!-- Bottom page message -->
<p class="contactCenterMessage contactStyleMessage">
Rest assured that our customer service team will reply to your inquiry as soon as possible.
</p>
</div>
</div>
</section>
<footer id="footer"></footer>
<!-- Scripts -->
<script src="scripts/contact.js"></script>
<script type="module" src="./scripts/index.js"></script>
<!-- Import Google Maps API functionality -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDUD161uyW5j432MBN_AN-MTGHSz50xl30&callback=initMap"></script>
</body>
</html>