Added Contact logic

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