Help us protect Louisiana's children. Report Child Abuse & Neglect: 1-855-4LA-KIDS (1-855-452-5437) toll-free, 24 hours a day, seven days a week

Success Stories

Unlocking Potential, Inspiring Success.

Witness transformative journeys as participants overcome challenges, acquire new skills, and secure stable employment. Celebrate empowering stories of resilience and boundless potential within each individual. Join us in honoring their success!

 

 

LaTarus Warren

When LaTarus Warren found himself struggling to make child support payments despite having a job, the CSE E&T program provided him with the necessary resources and support to achieve a goal that once seemed out of reach – attending night classes and getting his CDL Class A license. Mr. Warren now has a clear career pathway and the ability to earn a living wage that allows him to support himself and fulfill his child support obligations.

Shanna Wynn

Meet Shanna Wynn, a dedicated Strategies to Empower People (STEP) Program Coach hailing from the Thibodaux Region. In the heart of her story lies the essence of STEP's mission – to pave a pathway to self-sufficiency for work-eligible families benefiting from FITAP, empowering them with opportunities for job training, employment, and comprehensive support services.

“My name is Shanna Wynn. Let me begin by saying that where I am now in life is very different from where I was 14 months ago. I was first introduced to the STEP program as a participant. And let me tell you, I was far from sure where my life would be now. About fourteen months ago, I experienced extreme hardship and could not meet my basic needs. I made a choice to pick up my children and move back to my home state of Louisiana.”

“Upon moving back to Louisiana, I was introduced to STEP Coaches and, using the tools they provided, I started making goals for my family. With each goal I made, my coaches were there to cheer me on, encourage me, and help me become the best version of myself. With the encouragement from my coach, I applied for the STEP Coach position at DCFS. She saw something in me and knew I was made for this position. Long story short, I enrolled in an online Medical Billing and Coding program at Ultimate Medical Academy in Tampa, Florida, and fourteen months later, I am a college graduate. While working full time as a STEP Coach and being a full-time single mom, I still managed to earn High Honors with a 4.0 GPA and become a member of the Alpha Beta Kappa Honor Society. I regularly share my story of success with STEP participants to encourage them to set goals and have dreams. There is never a dream too big or small if you set your mind to the end result you want.”

“Shanna is committed to helping our participants because she has been in their shoes," Lisa Deroche, STEP Coach. “She understands the participants' circumstances and is very innovative at finding resources to assist them in any way possible. In addition to this, she also opens the door to talk about her life experiences to encourage the participants to share more of their stories with her. This enables her to find different avenues to assist them in their own journey within the STEP program. Although she now has a degree in a completely different field than STEP, she remains committed to helping our participants and has stated to me several times that she is not going anywhere because she knows she was called to do this work!”

 

 

View this site in another language:
// JavaScript code to handle button clicks and filter content const buttons = document.querySelectorAll('.nav_button'); const contentSections = document.querySelectorAll('.cards-container .card'); // Function to handle button click event function handleButtonClick(event) { const clickedButton = event.target; const filterValue = clickedButton.getAttribute('data-filter'); buttons.forEach(button => { if (button === clickedButton) { button.classList.add('nav_button--active', 'active-glow'); } else { button.classList.remove('nav_button--active', 'active-glow'); } }); contentSections.forEach(section => { if (filterValue === 'all' || section.classList.contains(filterValue)) { section.style.display = 'flex'; } else { section.style.display = 'none'; } }); } // Adding click event listeners to each button buttons.forEach(button => { button.addEventListener('click', handleButtonClick); }); // Set the "All" button as active by default when the page loads document.addEventListener('DOMContentLoaded', function() { const allButton = document.getElementById('all'); allButton.classList.add('nav_button--active', 'active-glow'); }); // Get references to the buttons and dialogs const warrenButton = document.getElementById('warrenButton'); const wynnButton = document.getElementById('wynnButton'); const warrenDialog = document.getElementById('Warren'); const wynnDialog = document.getElementById('Wynn'); // Function to open a dialog function openDialog(dialog) { dialog.showModal(); } // Function to close a dialog function closeDialog(dialog) { dialog.close(); } // Add click event listeners to the buttons warrenButton.addEventListener('click', () => { openDialog(warrenDialog); }); wynnButton.addEventListener('click', () => { openDialog(wynnDialog); }); // Add click event listeners to close buttons within the dialogs const warrenCloseButton = warrenDialog.querySelector('.x'); const wynnCloseButton = wynnDialog.querySelector('.x'); warrenCloseButton.addEventListener('click', () => { closeDialog(warrenDialog); }); wynnCloseButton.addEventListener('click', () => { closeDialog(wynnDialog); }); $(function () { $('#xform button.btn-back').click(function () { if ($('#xform input[name="sessionCode"]').length > 0) { var formID = $('#xform input[name="formID"]').val(); var formPageNum = parseInt($('#xform input[name="formPageNum"]').val()) - 1; var sessionCode = $('#xform input[name="sessionCode"]').val(); window.location = '/form/' + formID + '/' + formPageNum + '/' + sessionCode; } else { history.go(-1); } }); $('#xform button.btn-submit').click(function () { $('#xform').submit(); }); /* the following has been switched control to script.js */ /* init date/time pickers */ $('#xform input.date-picker').datetimepicker({format:'MM/DD/YYYY'}); $('#xform input.datetime-picker').datetimepicker(); $('#xform input.time-picker').datetimepicker({format:'hh:mm A'}); $('#xform').on('submit', function (e) { /* execute custom function if exists */ if (typeof beforeSubmit === "function") { if (!beforeSubmit()) return false; } /* validate all required fields */ /* required input/textarea/selecct fields */ var hasErrors = false; $('#xform input[required],#xform textarea[required],#xform select[required],#xform input:file[required]').each(function () { var v = $(this).val().trim(); if (v == "") { $(this).addClass('is-invalid'); hasErrors = true; } else { $(this).removeClass('is-invalid'); } }); /* required checkbox fields */ $('#xform input:checkbox[group-required]').each(function () { var fieldName = $(this).prop('name'); if ($('#xform input[name="' + fieldName + '"]:checked').length == 0) { $(this).parents('div.form-group').addClass('invalid-feedback d-block'); hasErrors = true; } else { $(this).parents('div.form-group').removeClass('invalid-feedback d-block'); } }); /* required radio fields */ $('#xform input:radio[required]').each(function () { var fieldName = $(this).prop('name'); if ($('#xform input[name="' + fieldName + '"]:checked').length == 0) { $(this).parents('div.form-group').addClass('invalid-feedback d-block'); hasErrors = true; } else { $(this).parents('div.form-group').removeClass('invalid-feedback d-block'); } }); if (hasErrors) { alert('The highlighted fields are required.'); return false; } /* validate file upload fields */ var fileUploadError = false; var fileReaderSupport = function() { return ('FormData' in window && 'FileReader' in window); }(); $('#xform input:file').each(function () { var numMaxFiles = parseInt($(this).attr('num-files-allowed-for-upload'), 10); var maxFileSize = parseFloat($(this).attr('file-size-allowed-for-upload')); //in MB var acceptableFileTypes = $(this).attr('acceptable-file-types'); if (fileReaderSupport) { var files = $(this)[0].files; if (files !== undefined && files !== null) { //check num files if (files.length > numMaxFiles) { alert("Please select at most " + numMaxFiles + " files."); fileUploadError = true; } //check file size var fSize = 0; //in KB for (var i = 0; i < files.length; i++) { fSize = fSize + files[i].size; } //in MB fSize = fSize / (1024 * 1024); if (fSize > maxFileSize) { alert("The file(s) you tried to upload exceeds the allowable file size limit " + maxFileSize + " MB."); fileUploadError = true; } //check file types for (var i = 0; i < files.length; i++) { var fName = files[i].name; var parts = fName.split('.'); var badFileTypeFound = false; if (parts.length < 2) { badFileTypeFound = true; } else { var ext = "." + parts[parts.length - 1]; ext = "," + ext.toLowerCase() + ","; var acceptableFileTypesPadded = "," + acceptableFileTypes + ","; if (acceptableFileTypesPadded.indexOf(ext) == -1) { badFileTypeFound = true; } } if (badFileTypeFound) { alert("The file " + fName + " you tried to upload is not allowed. Please upload any of these file types: " + acceptableFileTypes.replace(',', ', ')); fileUploadError = true; } } } } }); if (fileUploadError) return false; if ($("#g-recaptcha-response").length > 0) { var recaptcha = $("#g-recaptcha-response").val(); if (recaptcha === "") { alert("Please check the recaptcha."); return false; } } return true; }); });