<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Request</title>
	<link rel="stylesheet" href="/css/bootstrap.min.css">
</head>
<body>
	
	<div class="container">
		<div id="contents">
		<div class="col-md-12">
			<div class="content-item">
				<h2>Enquiry Request</h2>
				<p>Someone has an Enquiry</p>
				<p>This enquiry is also saved in website's database, Please check your admin panel.</p>
				<p>
					<b>Firstname :</b> <?php echo e(ucwords($firstname)); ?><br/>
					<b>Lastname :</b> <?php echo e(ucwords($lastname)); ?><br/>
					<b>Phone Number :</b> <?php echo e(ucwords($phone)); ?><br/>
					<b>Email Address :</b> <?php echo e(ucwords($email)); ?><br/>
					<b>Type of Website :</b> <?php echo e(ucwords($webtype)); ?><br/>
					<b>Budget Range :</b> <?php echo e(ucwords($budget)); ?><br/>
				</p>
			</div>
		</div>
	</div>
	</div>

	<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
	<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/js/bootstrap.min.js"></script>
</body>
</html>