26 lines
No EOL
855 B
PHP
Executable file
26 lines
No EOL
855 B
PHP
Executable file
@extends('layouts.auth')
|
|
|
|
@section('content')
|
|
<div class="authentication-wrapper authentication-2 ui-bg-cover ui-bg-overlay-container px-4" style="background-image: url({{asset('images/back.jpg')}});">
|
|
<div class="ui-bg-overlay bg-dark opacity-25"></div>
|
|
|
|
<div class="authentication-inner py-5">
|
|
|
|
<!-- Form -->
|
|
<div class="card">
|
|
<div class="p-4 p-sm-5">
|
|
|
|
<div class="display-1 lnr lnr-checkmark-circle text-center text-success mb-4"></div>
|
|
|
|
<p class="text-center text-big mb-4">Your email address has been successfully confirmed.</p>
|
|
|
|
<button type="button" class="btn btn-primary btn-block">Proceed to your account</button>
|
|
|
|
</div>
|
|
</div>
|
|
<!-- / Form -->
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@endsection |