done.blade.php 660 Bytes
@inject('webpackAssets', 'FootyRoom\Support\WebpackAssets')

@extends('layouts.default', ['isShowAds' => false])

@section('title', 'Account Created')

@php
    $webpackAssets->require('web/public/css/dist/signup');
@endphp

@section('content')

	</div>

	<div class="signup-page container">

		<div class="row">
			<div class="col-xs-12">
				
				<a href="/" class="header-logo signup-logo"></a>
				
				<div class="signup-well">
					<center><div class="mt10">Thank you! Your account has been created. Please check your email and follow the activation link to verify your account.</div></center>
				</div>

			</div>
		</div>

	</div>

	<div>

@endsection