-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
74 lines (65 loc) · 2.73 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
<?php
session_start();
require_once('./function.php');
require_once('./auth.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Emaar Properties</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="./style/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Reem+Kufi+Ink&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" /></head>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<body>
<header class="otherpage">
<nav class="dashboard">
<div class="logo">
<a href="#home"><img src="asset/logo/white.png" alt="Dubai Real Estate"></a>
</div>
<ul>
<li><a href="./dashboard.php" class="active"><i class="fa-solid fa-gauge"></i>Dashboard</a></li>
<li><a href="./contact.php"><i class="fa-solid fa-phone"></i>Contact</a></li>
</ul>
<div class="headerButton">
<a href="./logout.php" class="btn-primary white">Log Out</a>
</div>
</nav>
</header>
<div class="containerReservation">
<div class="boxReservation">
<h2>Contact Form</h2>
<form>
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" >
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" >
</div>
<div class="form-group">
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject" required>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
</div>
<button class="btn-primary green" type="submit">Submit</button>
</form>
</div>
</div>
<footer>
<div class="container">
<p>© 2023 Dubai Emaar Properties Hotel. All rights reserved.</p>
</div>
</footer>
</body>
</html>