HEX
Server: Apache
System: Linux www3.pit.tblive.com 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64
User: awaldron (1020)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/awaldron/_buildinmotion/bim_ci/app/Controllers/Careers.php
<?php namespace App\Controllers;

class Careers extends BaseController
{
    public function index()
    {
        $data = [];
        $data['title'] = 'Careers';
        $data['description'] = 'Build in Motion is always looking for capable software developers to join our 100% remote team.';
        $data['canon'] = 'https://buildinmotion.com/careers';
        $data['nav'] = 'jobs';

        $html = view('_header', $data);
        $html .= view('_header_ui', $data);
        $html .= view('careers');
        $html .= view('_footer');
        $html .= view('_footer_ui');

        return $html;
    }

    public function software()
    {
        $data = [];
        $data['title'] = 'Careers : Software Developer for Mobile and Web Applications';
        $data['description'] = 'Build in Motion is always looking for capable Software Developer for Mobile and Web Applications to join our 100% remote team.';
        $data['canon'] = 'https://buildinmotion.com/careers/software';
        $data['nav'] = 'jobs';

        $html = view('_header', $data);
        $html .= view('_header_ui', $data);
        $html .= view('careers_software');
        $html .= view('_footer');
        $html .= view('_footer_ui');

        return $html;
    }

    public function dotnet()
    {
        $data = [];
        $data['title'] = 'Careers : Software Engineer - .NET';
        $data['description'] = 'Build in Motion is always looking for capable Software Engineer - .NET to join our 100% remote team.';
        $data['canon'] = 'https://buildinmotion.com/careers/dotnet';
        $data['nav'] = 'jobs';

        $html = view('_header', $data);
        $html .= view('_header_ui', $data);
        $html .= view('careers_dotnet');
        $html .= view('_footer');
        $html .= view('_footer_ui');

        return $html;
    }

    public function react()
    {
        $data = [];
        $data['title'] = 'Careers : Front End Developer - React / React Native';
        $data['description'] = 'Build in Motion is always looking for capable Front End Developers focused on ReactJS to join our 100% remote team.';
        $data['canon'] = 'https://buildinmotion.com/careers/react';
        $data['nav'] = 'jobs';

        $html = view('_header', $data);
        $html .= view('_header_ui', $data);
        $html .= view('careers_react');
        $html .= view('_footer');
        $html .= view('_footer_ui');

        return $html;
    }

    public function fullstack()
    {
        $data = [];
        $data['title'] = 'Careers : Full Stack Web Developer - LAMP, WordPress';
        $data['description'] = 'Build in Motion is always looking for capable Full Stack Web Developer - LAMP, WordPress to join our 100% remote team.';
        $data['canon'] = 'https://buildinmotion.com/careers/devops';
        $data['nav'] = 'jobs';

        $html = view('_header', $data);
        $html .= view('_header_ui', $data);
        $html .= view('careers_fullstack');
        $html .= view('_footer');
        $html .= view('_footer_ui');

        return $html;
    }

    public function business_development()
    {
        $data = [];
        $data['title'] = 'Careers : Business Development Manager';
        $data['description'] = 'Build in Motion is searching for an experienced Software Business Development Manager to join our 100% remote team.';
        $data['canon'] = 'https://buildinmotion.com/careers/business_development';
        $data['nav'] = 'jobs';

        $html = view('_header', $data);
        $html .= view('_header_ui', $data);
        $html .= view('careers_bizdev');
        $html .= view('_footer');
        $html .= view('_footer_ui');

        return $html;
    }

    public function devops()
    {
        $data = [];
        $data['title'] = 'Careers : DevOps Continuous Integration / Delivery Manager';
        $data['description'] = 'Build in Motion is always looking for capable DevOps Continuous Integration / Delivery Manager to join our 100% remote team.';
        $data['canon'] = 'https://buildinmotion.com/careers/devops';
        $data['nav'] = 'jobs';

        $html = view('_header', $data);
        $html .= view('_header_ui', $data);
        $html .= view('careers_software');
        $html .= view('_footer');
        $html .= view('_footer_ui');

        return $html;
    }

    //--------------------------------------------------------------------

}