-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
117 lines (107 loc) · 5.63 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<title>Edit Product Information | Happy Events Equipment Rentals</title>
<!-- Required Meta Tags -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<link rel="stylesheet" href="styles/style.css" />
<!--fontawesome-->
<script src="https://kit.fontawesome.com/a2763a58b1.js"></script>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light my-nav shadow sticky-top">
<div class="container-fluid">
<a class="navbar-brand text-white fs-1 gugi-font" href="#"><i class="fas fa-igloo p-4 border border-light border-3 text-secondary"></i> HNS Housing<span style="color: rgb(108, 117, 125)"> | VMS</span></a>
<div class="d-grid gap-2 w-100">
<button class="navbar-toggler bg-white rounded-0 shadow" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse justify-content-end fw-bold" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 text-center">
<li class="nav-item">
<a class="nav-link" href="index.html">Home_(SignIn)</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About_Us</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Get_in_touch</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- ./ Navbar -->
<!-- Footer -->
<div class="fixed-bottom my-nav p-4 shadow">
<p class="text-center m-0 fw-bold" style="font-size: 10px">Copyright © 2021 | Developed by Mr. Thabang Mposula (8008999) Boston City Centre</p>
</div>
<!-- ./Footer -->
<div class="container text-center trans-container" style="padding-top: 10vh; margin-bottom: 100px">
<div style="font-size: 100px"><i class="fas fa-igloo p-4 border border-info border-3 text-secondary mb-4"></i></div>
<div class="bg-white p-4 shadowr"><h1 class="my-4 fw-bold">Contact Us</h1></div>
<h1 class="text-secondary" style="margin-top: 10vh">Get in touch with us by sending a message!</h1>
<div class="row mx-4">
<div class="col-md-2"></div>
<div class="col-md-8">
<div class="py-4 text-center">
<table class="table table-info text-secondary">
<thead>
<th colspan="2" class="fw-bold">My Contact Details:</th>
</thead>
<tbody>
<tr class="table-activez">
<td>Student Name:</td>
<td>Thabang Mposula</td>
</tr>
<tr class="table-activez">
<td>Contact Number:</td>
<td>071 269 4232</td>
</tr>
<tr class="table-activez">
<td>Email address:</td>
<td>[email protected] | [email protected]</td>
</tr>
<tr class="table-activez">
<td colspan="2">Crafted by Thabang Mposula (8008999) © 2021 | Systems Development 3 (HSYD300-1) SA1</td>
</tr>
</tbody>
</table>
</div>
<form method="post" id="placeholer-form" class="basic-form-style p-4 mb-4 shadow fs-3 bg-secondary text-white text-start">
<div class="mb-3">
<label for="placeholder-input" class="form-label">Name & Surname</label>
<input type="text" class="form-control rounded-pill" id="placeholder-input" name="placeholder-input" required />
</div>
<div class="mb-3">
<label for="placeholder-input" class="form-label">Email Address</label>
<input type="text" class="form-control rounded-pill" id="placeholder-input" name="placeholder-input" required />
</div>
<div class="mb-3">
<label for="placeholder-input" class="form-label">Contact Number</label>
<input type="text" class="form-control rounded-pill" id="placeholder-input" name="placeholder-input" required />
</div>
<div class="mb-3">
<label for="placeholder-input" class="form-label">Message</label>
<textarea class="form-control rounded" id="placeholder-input" name="placeholder-input" required rows="5"></textarea>
</div>
<div class="text-center">
<button type="submit" class="btn btn-outline-danger btn-block rounded-0 fw-bold">
<span class="fs-1 m-4">Send <i class="fas fa-paper-plane"></i></span>
</button>
</div>
</form>
</div>
<div class="col-md-2"></div>
</div>
</div>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>