Skip to content
wiki.fftac.org

Template Member Login

**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-login.php

**Size:** 0.9 KB

Summary

Template Name: Member Login

Source Preview

This source file is short enough to preview directly on its source-memory page.

<?php
/**
 * Template Name: Member Login
 * 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 Login', 'anti-christ-thin-veil' ); ?></p>
		<h1><?php esc_html_e( 'Sign in without hunting for wp-login.php.', 'anti-christ-thin-veil' ); ?></h1>
		<p class="archive-lead"><?php esc_html_e( 'This front door uses the normal WordPress login flow while Loginizer protects the endpoint. Posting access is still account-based and every dispatch remains pending until review.', 'anti-christ-thin-veil' ); ?></p>
	</section>
	<?php echo actv_member_flash(); ?>
	<?php echo actv_render_member_login_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();