added on local at 2026-07-01 12:35:17
| 1 | #!/usr/bin/perl | |
| 2 | ||
| 3 | ################################################################################################################################## | |
| 4 | # ______ ____ ____ ______ ______ ____ ___ __ ___ ______ _ __ ____ ____ __ __ _ __ _____ ____ | |
| 5 | # / ____// __ \ / __ \ / ____/ / ____// __ \ / | / |/ // ____/| | / // __ \ / __ \ / //_/ | | / /|__ / / __ \ | |
| 6 | # / / / / / // / / // __/ / /_ / /_/ // /| | / /|_/ // __/ | | /| / // / / // /_/ // ,< | | / / /_ < / / / / | |
| 7 | # / /___ / /_/ // /_/ // /___ / __/ / _, _// ___ | / / / // /___ | |/ |/ // /_/ // _, _// /| | | |/ / ___/ /_ / /_/ / | |
| 8 | # \____/ \____//_____//_____/ /_/ /_/ |_|/_/ |_|/_/ /_//_____/ |__/|__/ \____//_/ |_|/_/ |_| |___/ /____/(_)\____/ | |
| 9 | # | |
| 10 | # - Written by: Shawn Pickering | |
| 11 | # - shawn@shawnpickering.com | |
| 12 | ################################################################################################################################## | |
| 13 | use strict; | |
| 14 | use lib '/var/www/vhosts/3dshawn.com/ptmatrix.3dshawn.com'; | |
| 15 | ||
| 16 | ||
| 17 | ############################################################# | |
| 18 | ## Variables | |
| 19 | ############################################################# | |
| 20 | ||
| 21 | ||
| 22 | ||
| 23 | ############################################################ | |
| 24 | # Modules | |
| 25 | ############################################################ | |
| 26 | #Load the Stub renderer (placeholder pages while the real flow is built) | |
| 27 | use MODS::PTMatrix::Stub; | |
| 28 | ||
| 29 | ||
| 30 | ||
| 31 | ############################################################# | |
| 32 | ## Get form data | |
| 33 | ############################################################# | |
| 34 | ||
| 35 | ||
| 36 | ||
| 37 | ############################################################ | |
| 38 | # Program Controls | |
| 39 | ############################################################ | |
| 40 | $|=1; | |
| 41 | &placeholder_page; | |
| 42 | ||
| 43 | ||
| 44 | ############################################################ | |
| 45 | # Subroutines | |
| 46 | ############################################################ | |
| 47 | sub placeholder_page{ | |
| 48 | #This page is wired up but the verify-email flow is being built out - | |
| 49 | #renders the standard "Building out now" stub for now | |
| 50 | MODS::PTMatrix::Stub::render('verify_email', 'verify_email', 'Building out now.'); | |
| 51 | } |