50 lines
No EOL
2.5 KiB
PHP
50 lines
No EOL
2.5 KiB
PHP
@extends('layouts.auth')
|
|
|
|
@section('content')
|
|
|
|
<!-- 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">
|
|
|
|
<div class="card bg-body">
|
|
<div class="p-4 p-sm-4" style="adding-bottom: 0.25rem !important;">
|
|
<!-- Logo -->
|
|
<div class="d-flex justify-content-center align-items-center pb-2 mb-4">
|
|
<div class="">
|
|
<div class="w-100 position-relative">
|
|
<a href="/"><img src="{{ asset('/images/gruene-seele-logo.jpg') }}" alt="gruene-seele-logo" class=""></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- / Logo -->
|
|
|
|
<h5 class="text-center text-muted font-weight-normal mb-4">{{ __('Register') }}</h5>
|
|
|
|
<form method="POST" class="my-3" action="{{ route('user_register_again') }}" aria-label="{{ __('Register') }}">
|
|
@csrf
|
|
{!! Form::hidden('register_email', $register_email) !!}
|
|
<p><strong>{{ __('register.verify_exists-info1', ['email'=> $register_email ]) }}</strong></p>
|
|
<p>{{ __('register.verify_exists-info2') }}</p>
|
|
<p>{{ __('register.verify_exists-info3') }}</p>
|
|
<hr>
|
|
<button type="submit" class="btn btn-primary btn-block mt-4">{{ __('register.verify_email_again') }}</button>
|
|
</form>
|
|
<!-- / Form -->
|
|
|
|
<div class="card-footer">
|
|
<div class="text-center text-muted">
|
|
<a href="{{route('login')}}" class="btn btn-outline-primary mt-2 btn-sm">{{__('Login')}}</a>
|
|
</div>
|
|
<div class="mt-3 text-center">
|
|
<hr>
|
|
<a href="https://www.gruene-seele.bio/datenschutzerklaerung/" class="btn btn-outline-secondary mt-0 btn-sm">{{__('data protection')}}</a>
|
|
<a href="https://www.gruene-seele.bio/impressum/" class="btn btn-outline-secondary mt-0 btn-sm">{{__('imprint')}}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |