activation.blade.php
1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@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