- Updated default email in HVAC_Activator from support@upskillevents.com to joe@upskillhvac.com - Added email obfuscation methods (obfuscate_email, encode_email) to HVAC_Page_Manager - Updated registration pending template to use {support_email_encoded} placeholder - Added JavaScript and HTML entity protection against email harvesting bots 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Ben Reed <ben@tealmaker.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			No EOL
		
	
	
		
			729 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			No EOL
		
	
	
		
			729 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Template Name: Registration Pending
 | |
|  * Description: Template for the registration pending page
 | |
|  */
 | |
| 
 | |
| get_header();
 | |
| ?>
 | |
| <div class="hvac-registration-pending">
 | |
|     <div class="container">
 | |
|         <h1>Registration Pending</h1>
 | |
|         <p>Thank you for registering! Your registration is currently pending approval.</p>
 | |
|         <p>You will receive an email notification once your account has been approved.</p>
 | |
|         <p>If you have any questions, please contact support at <?php echo HVAC_Page_Manager::encode_email(get_option('hvac_support_email', 'joe@upskillhvac.com')); ?>.</p>
 | |
|         <p><a href="<?php echo esc_url(home_url('/')); ?>" class="ast-button">Return to Home</a></p>
 | |
|     </div>
 | |
| </div>
 | |
| <?php
 | |
| get_footer();
 |