40 lines
1.3 KiB
PHP
Executable file
40 lines
1.3 KiB
PHP
Executable file
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
<div class="authentication-wrapper authentication-2 px-4" style="margin-top: 120px;">
|
|
<div class="authentication-inner py-5">
|
|
|
|
<!-- Form -->
|
|
<div class="card">
|
|
<div class="p-4 p-sm-5">
|
|
<style>
|
|
.ui-icon {
|
|
width: 90px;
|
|
height: 90px;
|
|
font-size: 50px;
|
|
line-height: calc(90px - 4px);
|
|
}
|
|
</style>
|
|
<div class="text-primary mx-auto mb-4 text-center">
|
|
<span class="ui-icon font-weight-bolder">
|
|
<i class="ion ion-ios-paper-plane" style="color: #e48800;"></i>
|
|
</span>
|
|
</div>
|
|
|
|
<p class="text-center text-big mb-4">{{ __('Thank you for your registration!') }}</p>
|
|
<p class="text-center text-big mb-4"><strong>{{ __('We have sent you an e-mail with a link to activate your data.') }}</strong></p>
|
|
|
|
<a href="{{route('/')}}" class="btn btn-primary btn-block">{{ __('back to the homepage') }}</a>
|
|
|
|
</div>
|
|
</div>
|
|
<!-- / Form -->
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
|