Skip to content
wiki.fftac.org

Template Join - Source Excerpt 03

Back to Template Join

Summary

This source excerpt preserves a bounded section of Anti-Christ.org/wp-content/themes/antichrist-engine/template-join.php so readers can inspect the evidence without opening the full source file.

**Source path:** Anti-Christ.org/wp-content/themes/antichrist-engine/template-join.php

<?php echo esc_html(' ' . $program_copy['metrics_label']); ?>
                    </p>
                <?php endif; ?>
                <?php if ($requested_program) : ?>
                    <p class="membership-form__hint">
                        <?php
                        echo esc_html(sprintf(
                            __('The %s lane is preselected below so you can move directly into that intake path.', 'antichrist-engine'),
                            $program_options[$requested_program]['label']
                        ));
                        ?>
                    </p>
                    <?php if ($requested_program_details) : ?>
                        <article class="statement-card program-intake-focus">
                            <p class="eyebrow"><?php echo esc_html($requested_program_details['eyebrow']); ?></p>
                            <h3><?php echo esc_html($requested_program_details['title']); ?></h3>
                            <p><?php echo esc_html($requested_program_details['summary']); ?></p>
                            <div class="foundation-kv foundation-kv--compact">
                                <div class="foundation-kv__item">
                                    <span><?php esc_html_e('Format', 'antichrist-engine'); ?></span>
                                    <strong><?php echo esc_html($requested_program_details['format']); ?></strong>
                                </div>
                                <div class="foundation-kv__item">
                                    <span><?php esc_html_e('Cadence', 'antichrist-engine'); ?></span>
                                    <strong><?php echo esc_html($requested_program_details['cadence']); ?></strong>
                                </div>
                            </div>
                            <p class="foundation-panel__subline"><?php echo esc_html($requested_program_details['current_cycle']); ?></p>
                        </article>
                    <?php endif; ?>
                <?php endif; ?>
                <?php if ($program_notice) : ?>
                    <div class="membership-notice membership-notice--<?php echo esc_attr($program_notice['type']); ?>" role="<?php echo esc_attr('error' === $program_notice['type'] ? 'alert' : 'status'); ?>">
                        <p><?php echo esc_html($program_notice['message']); ?></p>
                    </div>
                <?php endif; ?>
                <form class="membership-form" action="<?php echo esc_url(admin_url('admin-post.php')); ?>" method="post" data-submit-status="<?php esc_attr_e('Sending your program inquiry securely...', 'antichrist-engine'); ?>">
                    <input type="hidden" name="action" value="antichrist_engine_program_interest">
                    <input type="hidden" name="redirect_to" value="<?php echo esc_attr((string) $program_redirect); ?>">
                    <?php wp_nonce_field('antichrist_engine_program_interest'); ?>
                    <?php antichrist_engine_security_print_form_fields('program-interest'); ?>

                    <div class="membership-form__grid">
                        <label>
                            <span><?php echo esc_html($program_copy['name_label']); ?></span>
                            <input type="text" name="program_name" autocomplete="name" maxlength="120">
                        </label>
                        <label>
                            <span><?php echo esc_html($program_copy['email_label']); ?></span>
                            <input type="email" name="program_email" autocomplete="email" maxlength="190" required>
                        </label>
                    </div>

                    <div class="membership-form__grid">
                        <label>
                            <span><?php echo esc_html($program_copy['program_label']); ?></span>
                            <select name="program_track" required>
                                <option value=""><?php echo esc_html($program_copy['program_default']); ?></option>
                                <?php foreach ($program_options as $slug => $program) : ?>
                                    <option value="<?php echo esc_attr($slug); ?>"<?php selected($requested_program, $slug); ?>><?php echo esc_html($program['label']); ?></option>
                                <?php endforeach; ?>
                            </select>
                        </label>
                        <label>
                            <span><?php echo esc_html($program_copy['role_label']); ?></span>
                            <input type="text" name="program_role" maxlength="160" placeholder="<?php esc_attr_e('Historian, editor, deconstructor, technologist...', 'antichrist-engine'); ?>">
                        </label>
                    </div>

                    <label>
                        <span><?php echo esc_html($program_copy['notes_label']); ?></span>
                        <textarea name="program_notes" rows="5" maxlength="1500" placeholder="<?php esc_attr_e('Tell us what you want to study, host, write, or help build.', 'antichrist-engine'); ?>"></textarea>
                    </label>

                    <div class="membership-form__actions">
                        <button type="submit" class="button" data-loading-label="<?php esc_attr_e('Sending...', 'antichrist-engine'); ?>"><?php echo esc_html($program_copy['submit_label']); ?></button>
                        <p class="membership-form__hint"><?php echo esc_html($program_copy['privacy_note']); ?></p>
                    </div>
                </form>
            </section>
        </div>

        <aside class="foundation-layout__aside">
            <article class="card foundation-panel foundation-panel--compact">
                <p class="eyebrow"><?php esc_html_e('Membership', 'antichrist-engine'); ?></p>
                <p><?php echo esc_html($join_copy['membership_summary']); ?></p>
                <a class="button" href="<?php echo esc_url($membership_url); ?>"><?php echo esc_html($join_copy['membership_cta']); ?></a>
            </article>
            <article class="card foundation-panel foundation-panel--compact">
                <p class="eyebrow"><?php esc_html_e('Institutional File', 'antichrist-engine'); ?></p>
                <ul class="membership-links">
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('charter')); ?>"><?php esc_html_e('Institutional Charter', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('standards')); ?>"><?php esc_html_e('Editorial Standards', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('journal')); ?>"><?php esc_html_e('Journal', 'antichrist-engine'); ?></a></li>
                </ul>
            </article>
            <article class="card foundation-panel foundation-panel--compact">
                <p class="eyebrow"><?php esc_html_e('Public Assurances', 'antichrist-engine'); ?></p>
                <ul class="foundation-list foundation-list--tight">
                    <?php foreach (array_slice($assurances, 0, 3) as $assurance) : ?>
                        <li><?php echo esc_html($assurance['title']); ?></li>
                    <?php endforeach; ?>
                </ul>
            </article>
            <article class="card foundation-panel foundation-panel--compact">
                <p class="eyebrow"><?php esc_html_e('Research Utilities', 'antichrist-engine'); ?></p>
                <ul class="membership-links">
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('recovery')); ?>"><?php esc_html_e('Recovery guide', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_build_target_url('research', array(), 'research-api')); ?>"><?php esc_html_e('Public research API', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_build_target_url('join', array('program' => 'research-cohort'), 'program-intake')); ?>"><?php esc_html_e('Post-Apocalyptic Cohort', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_build_target_url('join', array('program' => 'digital-summit'), 'program-intake')); ?>"><?php esc_html_e('Digital Summit route', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(add_query_arg('track', 'verified-research', antichrist_engine_foundation_get_page_url('journal'))); ?>"><?php esc_html_e('Verified research dossiers', 'antichrist-engine'); ?></a></li>