
<?php $__env->startSection('subtitle'); ?>
Join Game Loadouts
<?php $__env->stopSection(); ?>

<?php $__env->startSection('description'); ?>
Join Game Loadouts. You can sign up for free here.
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<div class="col-md-5">
    <h2>Benefits</h2>
    <span class="line"> <span class="sub-line"></span> </span>
    <div class="row join-row flex">
        <div class="col-xs-1 flex">    
            <span class="glyphicon glyphicon-ban-circle glyphicon-big vertical-center"></span>
        </div>
        <div class="col-xs-11 flex">
            <p class="vertical-center"><strong>No CAPTCHA</strong> when submitting and voting on loadouts</p>
        </div>
    </div>
    <div class="row join-row flex">
        <div class="col-xs-1 flex">    
            <span class="glyphicon glyphicon-arrow-up glyphicon-big vertical-center"></span>
        </div>
        <div class="col-xs-11 flex">
            <p class="vertical-center"><strong>Faster voting</strong> without needing to refresh the page.</p>
        </div>
    </div>
    
    <div class="row join-row flex">
        <div class="col-xs-1 flex">    
            <span class="glyphicon glyphicon-list glyphicon-big vertical-center"></span>
        </div>
        <div class="col-xs-11 flex">
            <p class="vertical-center"><strong>View your submissions</strong> on a dedicated page where you can view and remove them.</p>
        </div>
    </div>
    
    <div class="row join-row flex">
        <div class="col-xs-1 flex">    
            <span class="glyphicon glyphicon-comment glyphicon-big vertical-center"></span>
        </div>
        <div class="col-xs-11 flex">
            <p class="vertical-center"><strong>Comment on loadouts</strong> to further express your thoughts.</p>
        </div>
    </div>
</div>
<div class="col-md-7">
    <h2>Account Registration</h2>
    <span class="line"> <span class="sub-line"></span> </span>
    <?php echo Form::open(array('action' => 'UserController@join', 'id' => 'registerForm', 'class' => 'form-horizontal')); ?>
    <fieldset>
        <div class="form-group">
            <div class="col-md-12">
                <?php echo Form::text('username', '', array('class' => 'form-control input-lg', 'placeholder' => 'Username', 'required' => '')); ?>
            </div>
        </div>
        <div class="form-group">
            <div class="col-md-12">
                <?php echo Form::email('email', '', array('class' => 'form-control input-lg', 'placeholder' => 'Email', 'required' => '')); ?>
            </div>
        </div>
        <div class="form-group">
            <div class="col-md-12">
                <?php echo Form::password('password', array('class' => 'form-control input-lg', 'placeholder' => 'Password', 'required' => '')); ?>
            </div>
        </div>
        <div class="form-group">
            <div class="col-md-12">
                <?php echo Form::password('password_confirmation', array('class' => 'form-control input-lg', 'placeholder' => 'Confirm Password', 'required' => '')); ?>
            </div>
        </div>
        <div class="form-group">
            <div class="col-md-12">
                <p>By registering, you are agreeing to our <a href="<?php echo route('terms'); ?>">Terms of Use</a>.</p>
            </div>
        </div>
        <div class="form-group">
            <div class="col-md-12">
                <button class="btn btn-default btn-lg" type="reset">
                    Cancel
                </button>
                <button type="submit" class="btn btn-primary btn-lg">
                    Sign up!
                </button>
            </div>
        </div>
    </fieldset>
    <?php echo Form::close(); ?>
</div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>