Message form added

This commit is contained in:
Olu Amey
2021-08-12 20:26:26 -04:00
parent 0b8e6ff44e
commit 8728d0ad9d
2 changed files with 57 additions and 6 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
namespace App\Controllers;
class Contact extends BaseController
{
public function index()
{
$data = array();
$this->renderExtPage('developers', $data);
}
public function formMessage()
{
$returnMsg = "Message Received, we will get back in touch to follow up"; //<div class=\"col-lg-5\"><div class=\"form-group text-right\"></div></div>";
echo $returnMsg;
}
}