You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
YOLO/contactus.php

31 lines
982 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Temphire</title>
<link rel="stylesheet" href="contactus.css">
</head>
<body>
<?php include 'navbar.php' ?>
<div class="content">
<h3><b>Please provide the feed back about your problem</h3>
<form>
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your name" required>
<label for="email">Your Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<label for="message">Your Message:</label>
<textarea id="message" name="message" placeholder="Type your message here" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
<?php include 'footer.php' ?>
</body>
</html>