-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.php
80 lines (67 loc) · 4.12 KB
/
contact.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<nav class="navbar navbar-expand-lg navbar-light bg-white" style="box-shadow: 0px 3px 3px black;">
<div class="container-fluid text-center ">
<img class="logo" src="img/logo.png" alt="logo">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup" style="justify-content: flex-end; margin-left:-4%;">
<div class="navbar-nav">
<a class="nav-link " aria-current="page" href="home.php">Home</a>
<a class="nav-link active" aria-current="page" href="contact.php">Contact</a>
<a class="nav-link " href="signup.php">Meld je aan</a>
<a class="nav-link" href="login.php">Login</a>
</div>
</div>
</div>
</nav>
<body style="background-color: #1E706B; color: white;">
<div class="row" style="--bs-gutter-x: 0rem; ">
<div class="bg-image p-3 text-center shadow-1-strong col-md w-25 flex-item-" style="
width: 80vh; background-size: 50%; background-repeat: no-repeat; margin-top: 80px;">
<h1 class="mb-3 h2">Contacteer ons</h1>
<p>Je kan ons contacteeren op het nummer: 0495429542 </p>
<hr style="width:50%; margin-left: 25%">
</hr>
<p>Of vul het email formulier in </p>
<form action="mailto:[email protected]" method="POST" class="wrapper-medium-contact form-login">
<div class="form-outline" style="margin-top: 2%;">
<label class="form-label" for="typeText">Voornaam </label>
<input placeholder="Voornaam" type="text" name="name" method="POST" enctype="multipart/form-data" name="EmailForm" type="text" id="typeText" size="19" class="form-control" required />
</div>
<div class="form-outline">
<label class="form-label" for="typeEmail">Email </label>
<fieldset>
<input placeholder="Email Adress" action="?go" method="post" type="text" name="email" id="typeEmail" class="form-control " required />
</fieldset>
</div>
<div class="form-outline" style="margin-bottom: 20px;">
<label class="form-label" for="textAreaExample">Message</label>
<textarea placeholder="Type your Message Here...." class="form-control" id="textAreaExample" rows="4" required></textarea>
</div>
<button id="submit" data-submit="...Sending" name="submit" type="submit" class="btn btn-contact btn-outline-secondary" data-mdb-ripple-color="dark" value="send" style="color:white;">
Stuur bericht
</button>
</form>
</div>
</div>
<footer class="footer bg-light text-center text-lg-start">
<!-- Copyright -->
<div class="text-center text-white p-3" style="color:white; background-color: #252523; box-shadow: 0px 0px 6px grey;">
<a class="text-white" style="color:white; text-decoration: none;" href="">© 2020 Copyright: Elias Valienne en Kevin Vanbockryck</a>
</div>
<!-- Copyright -->
</footer>
</body>
<script src="app.js"></script>
</html>