<?php

/**
 * Template Name: bbPress - User Register
 *
 * @package bbPress
 * @subpackage Theme
 */
// No logged in users
bbp_logged_in_redirect();
// Begin Template
get_header();
?>

	<?php 
do_action('bbp_before_main_content');
?>

	<?php 
do_action('bbp_template_notices');
?>

	<?php 
while (have_posts()) {
    the_post();
    ?>

		<div id="bbp-register" class="bbp-register">
			<h1 class="entry-title"><?php 
    the_title();
    ?>
<?php

/**
 * Template Name: bbPress - User Login
 *
 * @package bbPress
 * @subpackage Theme
 */
// No logged in users
bbp_logged_in_redirect('bbpress');
// Begin Template
get_header('bbpress');
?>
	<div id="primary" class="content-area col-md-8">
		<main id="main" class="site-main" role="main">

			<?php 
do_action('bbp_before_main_content');
?>
			<?php 
do_action('bbp_template_notices');
?>

			<?php 
while (have_posts()) {
    the_post();
    ?>
				<div id="bbp-login" class="bbp-login">
					<header class="entry-header page-header">
						<h1 class="entry-title"><?php 
    the_title();