Diff -- /var/www/vhosts/3dshawn.com/ptmatrix.3dshawn.com/verify_email.cgi
Diff

/var/www/vhosts/3dshawn.com/ptmatrix.3dshawn.com/verify_email.cgi

added on local at 2026-07-01 12:35:17

Added
+51
lines
Removed
-0
lines
Context
0
unchanged
Blobs
from
to 561443b1180b
Restore this content →
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.
1#!/usr/bin/perl
2
3##################################################################################################################################
4# ______ ____ ____ ______ ______ ____ ___ __ ___ ______ _ __ ____ ____ __ __ _ __ _____ ____
5# / ____// __ \ / __ \ / ____/ / ____// __ \ / | / |/ // ____/| | / // __ \ / __ \ / //_/ | | / /|__ / / __ \
6# / / / / / // / / // __/ / /_ / /_/ // /| | / /|_/ // __/ | | /| / // / / // /_/ // ,< | | / / /_ < / / / /
7# / /___ / /_/ // /_/ // /___ / __/ / _, _// ___ | / / / // /___ | |/ |/ // /_/ // _, _// /| | | |/ / ___/ /_ / /_/ /
8# \____/ \____//_____//_____/ /_/ /_/ |_|/_/ |_|/_/ /_//_____/ |__/|__/ \____//_/ |_|/_/ |_| |___/ /____/(_)\____/
9#
10# - Written by: Shawn Pickering
11# - shawn@shawnpickering.com
12##################################################################################################################################
13use strict;
14use 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)
27use 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############################################################
47sub 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}
Keyboard: j next diff k previous diff g top G bottom r restore c compile-check ? help