All checks were successful
Deploy Production (merchbay.com) / deploy (push) Successful in 2m11s
Co-authored-by: Frank John Begornia <frank.begornia@yahoo.com> Reviewed-on: #1
25 lines
622 B
PHP
Executable File
25 lines
622 B
PHP
Executable File
<!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>Merchbay | Contact Us</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Merchbay - Contact Page</h1>
|
|
|
|
<p>
|
|
<strong>Name</strong><br><?php echo $name; ?>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Email Address</strong><br><?php echo $emailAddress; ?>
|
|
</p>
|
|
<p>
|
|
<strong>Message</strong><br><?php echo $msg; ?>
|
|
</p>
|
|
|
|
</body>
|
|
</html>
|