fix pages
This commit is contained in:
@@ -8,10 +8,13 @@ use CodeIgniter\Router\RouteCollection;
|
||||
$routes->get('/', 'Home::index');
|
||||
$routes->get('/about-us', 'Home::aboutUs');
|
||||
$routes->get('/contacts', 'Home::contacts');
|
||||
$routes->post('/contacts', 'Home::contacts');
|
||||
$routes->get('/alcohol-addiction', 'Home::alcoholAddiction');
|
||||
$routes->get('/marital-problems', 'Home::maritalProblems');
|
||||
$routes->get('/counseling', 'Home::counseling');
|
||||
$routes->get('/psycho-education', 'Home::psychoEducation');
|
||||
$routes->get('/depression', 'Home::depression');
|
||||
$routes->get('/oppositional-defiant-disorder','Home::oppositionalDefiantDisorder');
|
||||
|
||||
$routes->get('/career','Home::career');
|
||||
$routes->get('/spiritual', 'Home::spiritual');
|
||||
$routes->get('/homelessness', 'Home::homelessness');
|
||||
|
||||
@@ -39,5 +39,15 @@ class Home extends BaseController
|
||||
public function oppositionalDefiantDisorder():string{
|
||||
return view('oppositional-defiant-disorder');
|
||||
}
|
||||
public function career():string{
|
||||
return view('career');
|
||||
}
|
||||
|
||||
public function spiritual():string{
|
||||
return view('spiritual');
|
||||
}
|
||||
|
||||
public function homelessness():string{
|
||||
return view ('homelessness');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
<?php $this->extend('layouts/master') ?>
|
||||
<?php $this->section('content') ?>
|
||||
<div id="breadcrumbs">
|
||||
<a title="Home" href="#">Home »</a> Career and Financial Counseling
|
||||
</div><!--/ breadcrumbs-->
|
||||
<div class="gray-holder">
|
||||
|
||||
<h1>Career and Financial Counseling</h1>
|
||||
<p>
|
||||
|
||||
|
||||
Choosing a career path can be very challenging to many college students and young adults alike. For some choosing career can be exciting while many people are struggling with what they are good at in this world. When it is hard for you to make a bold move on career issues you can reach out to us to help you make the right decision. Our professionals will not make the decision for you but they can help you make the right career decisions. Financial stability is strongly related to careers, earnings and incomes that an individuals or family receive on a regular basis. Many people know how to work hard but lack good management skills. Our agency can help you manage what you earn wisely.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
<div class="clear"></div>
|
||||
</div><!--/ gray-holder-->
|
||||
<?= $this->endSection() ?>
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
<div id="contact">
|
||||
<div id="message"></div>
|
||||
<form method="post" action="contact.php" id="contactform">
|
||||
<form method="post" action="/contacts" id="contactform">
|
||||
<fieldset>
|
||||
<div class="alignleft">
|
||||
<div class="row">
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
<?php $this->extend('layouts/master') ?>
|
||||
<?php $this->section('content') ?>
|
||||
<div id="breadcrumbs">
|
||||
<a title="Home" href="#">Home -</a> Homelessness, Joblessness and Mental Health Issues
|
||||
</div><!--/ breadcrumbs-->
|
||||
<div class="gray-holder">
|
||||
|
||||
<h1>Homelessness, Joblessness and Mental Health Issues</h1>
|
||||
<p>
|
||||
|
||||
|
||||
Mental health problems stem from homelessness, joblessness and financial difficulty. Living under the bridge or being jobless is a serious mental health issue that can be addressed when you call today. Help is available when you can I Care Mental Health (ICMH). Economic situation can create homelessness for many people who are looking for work and cannot find job. Joblessness and homelessness are inextricably linked and they are the cause of poverty in our community today. You can seek for help from our professionals to know how you can get back on your feet.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
<div class="clear"></div>
|
||||
</div><!--/ gray-holder-->
|
||||
<?= $this->endSection() ?>
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php session_start(); header("(anti-spam-content-type:) image/png");
|
||||
|
||||
$enc_num = rand(0, 9999);
|
||||
$key_num = rand(0, 24);
|
||||
$hash_string = substr(md5($enc_num), $key_num, 5); // Length of String
|
||||
$hash_md5 = md5($hash_string);
|
||||
|
||||
$_SESSION['verify'] = $hash_md5;
|
||||
|
||||
// Verification Image Background Selection
|
||||
|
||||
$bgs = array("verify/1.png","verify/2.png","verify/3.png");
|
||||
$background = array_rand($bgs, 1);
|
||||
|
||||
// Verification Image Variables
|
||||
|
||||
$img_handle = imagecreatefrompng($bgs[$background]);
|
||||
$text_colour = imagecolorallocate($img_handle, 117, 154, 24);
|
||||
$font_size = 5;
|
||||
|
||||
$size_array = getimagesize($bgs[$background]);
|
||||
$img_w = $size_array[0];
|
||||
$img_h = $size_array[1];
|
||||
|
||||
$horiz = round(($img_w/2)-((strlen($hash_string)*imagefontwidth(5))/2), 1);
|
||||
$vert = round(($img_h/2)-(imagefontheight($font_size)/2));
|
||||
|
||||
// Make the Verification Image
|
||||
|
||||
imagestring($img_handle, $font_size, $horiz, $vert, $hash_string, $text_colour);
|
||||
imagepng($img_handle);
|
||||
|
||||
// Destroy the Image to keep Server Space
|
||||
|
||||
imagedestroy($img_handle);
|
||||
|
||||
?>
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
<!-- ***************** - BEGIN Header - ******************* -->
|
||||
<header class="clearfix">
|
||||
<div class="logo"><a href="index"><img src="/images/logo.png" alt="" /></a></div><!--/ logo-->
|
||||
<div class="logo"><a href="/"><img src="/images/logo.png" alt="" /></a></div><!--/ logo-->
|
||||
<div class="info-call">
|
||||
<p>
|
||||
For additional information call: <span>+404-721-0184 <a style="color: white; font-weight: bolder;" href="https://care.tavahealth.com/providers/james-abolarin"> or Schedule a call</a></span>
|
||||
@@ -45,7 +45,7 @@
|
||||
<!-- ************ - BEGIN Navigation - ************** -->
|
||||
<nav class="navigation" id="navigation">
|
||||
<ul>
|
||||
<li class="current-menu-item"><a href="index">Home</a>
|
||||
<li class="current-menu-item"><a href="/">Home</a>
|
||||
|
||||
</li>
|
||||
<li><a href="about-us">About us</a>
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
<?php $this->extend('layouts/master') ?>
|
||||
<?php $this->section('content') ?>
|
||||
<div id="breadcrumbs">
|
||||
<a title="Home" href="#">Home -</a> Spiritual & Holistic Lifestyles
|
||||
</div><!--/ breadcrumbs-->
|
||||
<div class="gray-holder">
|
||||
|
||||
<h1>Spiritual & Holistic Lifestyles</h1>
|
||||
<p>
|
||||
|
||||
|
||||
Spirituality is another area of values for millions of people who want to connect with higher power, for believers- thats God while others believe in something else. Spirituality helps, especially when talking about the Christians perspective on what constitute transformation and renewal. Meditation is associated with spirituality, while prayers are made to God who can help empower the weak minded people to overcome odds in life. There are benefits to engage in spiritual explorations if it is done properly and wholeheartedly. Counseling is available for those who want to walk in the light and receive inspiration to live a sober, clean and upright life.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
<div class="clear"></div>
|
||||
</div><!--/ gray-holder-->
|
||||
<?= $this->endSection() ?>
|
||||
Reference in New Issue
Block a user