activation.blade.php 1.04 KB
@inject('webpackAssets', 'FootyRoom\Support\WebpackAssets')

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

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

@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">
					@if ($activated)
						<center>
							<div class="mt10">
								<p>Your account is activated. You may now log in.</p>
								<p>Please note that you may post or comment only twice per day in the forums. After 10 days this limit will be removed.</p>
							</div>
						</center>
					@else
						<center>
							<div class="mt10">
								<p>Your activation code is invalid or it might have expired. Please try to request new one by <a href="/login">signing in</a>.</p>
								<p>Contact us if you have further problems.</p>
							</div>
						</center>
					@endif
				</div>

			</div>
		</div>
	</div>

	<div>

@endsection