49 lines
1.9 KiB
PHP
Executable file
49 lines
1.9 KiB
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="d-flex justify-content-center align-items-center pb-2 mb-2">
|
|
<div class="">
|
|
<div class="w-100 position-relative">
|
|
<a href="https://www.mivita.care"><img src="{{ asset('/images/logo_mivita.png') }}" alt="mivita.care" class=""></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
.ui-icon {
|
|
width: 90px;
|
|
height: 90px;
|
|
font-size: 50px;
|
|
line-height: calc(90px);
|
|
}
|
|
</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"><strong>{{ __('Thank you for your registration!') }}</strong></p>
|
|
<p class="text-center text-big mb-4">{{ __('We have sent you an e-mail with a link to activate your data.') }}</p>
|
|
|
|
<a href="{{url('/')}}" class="btn btn-primary btn-block">{{ __('back to the homepage') }}</a>
|
|
|
|
</div>
|
|
</div>
|
|
<!-- / Form -->
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
|