-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact-us.html
88 lines (78 loc) · 2.82 KB
/
contact-us.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="src/style.css" />
<link rel="stylesheet" href="src/createevent.css" />
<link rel="stylesheet" href="src/contact-us.css" />
<link rel="stylesheet" href="src/header.css" />
<link rel="stylesheet" href="src/footer.css" />
<title>MateMe - Contact us</title>
<!-- Déclaration of the global variables and initialisation of them (see: https://www.py4u.net/discuss/275309)-->
<script type='text/javascript'>
let cityList = [];
let eventList = [];
</script>
<script src="src/globalVar.js"></script>
</head>
<body>
<div class="contact-container">
<header id="navBar-header">
<img
id="avatar"
src="https://images.unsplash.com/photo-1540331547168-8b63109225b7"
/>
<div class="brandName">
<a href="index.html">MateMe</a>
</div>
<nav id="dropdown-menu">
<button id="menu-btn">≡</button>
<ul id="menu" class="menu-off">
<li class="menu-list">
<a href="index.html" class="nav-link-header">Home</a>
</li>
<li class="menu-list">
<a href="createevent.html" class="nav-link-header">Create events</a>
</li>
<li class="menu-list">
<a href="#" class="nav-link-header">Contact</a>
</li>
</ul>
</nav>
</header>
<section id="contact-us-body">
<h2 class="createeventh2">Hy mate, what's up?</h2>
<form class="formcreateevent">
<label for="firstName"><span class="createeventlabel">What's your name?</span></label><br />
<input
type="text"
id="contact-us-name"
name="name"
placeholder="Tell us your name"
/><br />
<label for="firstName"><span class="createeventlabel">Your email</span></label><br />
<input
type="text"
id="contact-us-email"
name="email"
placeholder="[email protected]"
/><br />
<label for="message"><span class="createeventlabel">What do you want to tell us?</span></label><br />
<textarea id="contact-us-msg" name="message" onfocus="this.value=''">Blablabla</textarea><br />
<input id="button" type="submit" value="Submit" />
</form>
</section>
</div>
<footer>
<a href="contact-us.html" class="contact-footer">Contact us</a>
<p class="copyright">Copyright © 2021 WCD. All right reserved</p>
</footer>
<script src="src/contact-us.js"></script>
<script src="src/header.js"></script>
</body>
</html>