@extends('layouts.subscriptionheader')
@section('title', '')
@section('content')
<div class="row">
  <!--row starts-->
  <div class="col-md-12">
    <div class="panel ">
      <div class="panel-heading">
          
      </div>
      <div class="panel-body">
          <form class="form-horizontal" action="#" method="post" id="action">                    
            <!-- Form actions -->
            <div class="form-position">
              <div class="col-md-12">
                  @if($sts==0)
                      <h3>
                          Your e-mail is verified. You can now Proceed to Login.
                      </h3>
                      <br><br>
                      <label style="color: blue;">Please Click the button.</label>
                      <br><br>
                      <a href="{{URL::to('/')}}"  class="btn btn-primary btn-sm">Proceed to Login</a>
                  @endif
                  @if($sts==1)
                      <h3 style="color: red;">
                          {{$status}}
                      </h3>
                  @endif
              </div>
            </div>
          </form>
      </div>
    </div> 
  </div>
  <!--md-12 ends-->
</div>  
@stop                   