Template Member Join
**Site relevance:** Anti-Christ.net
**Memory type:** theme source memory
**Source path:** Anti-Christ.net/wp-content/themes/anti-christ-thin-veil/page-templates/template-member-join.php
**Size:** 1 KB
Summary
Template Name: Member Join
Source Preview
This source file is short enough to preview directly on its source-memory page.
<?php
/**
* Template Name: Member Join
* Template Post Type: page
*
* @package Anti_Christ_Thin_Veil
*/
get_header();
?>
<main id="primary" class="site-main">
<section class="page-hero">
<p class="section-label"><?php esc_html_e( 'Member Roster', 'anti-christ-thin-veil' ); ?></p>
<h1><?php esc_html_e( 'Join the roster, then request the right kind of access.', 'anti-christ-thin-veil' ); ?></h1>
<p class="archive-lead"><?php esc_html_e( 'Participants Database handles roster intake and private record links. A roster entry is not the same thing as a WordPress posting account; that separation keeps posting access easier to review.', 'anti-christ-thin-veil' ); ?></p>
</section>
<?php echo actv_member_flash(); ?>
<?php echo actv_render_member_join_panel(); ?>
<?php
while ( have_posts() ) :
the_post();
if ( trim( wp_strip_all_tags( get_the_content() ) ) ) {
get_template_part( 'template-parts/content', 'page' );
}
endwhile;
?>
</main>
<?php
get_footer();