2015-07-29 09:52:10 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ App::getLocale() }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
</head>
|
2015-03-16 22:45:25 +01:00
|
|
|
<body>
|
2015-04-14 20:58:07 +02:00
|
|
|
@if (false && !$invitationMessage)
|
|
|
|
@include('emails.confirm_action', ['user' => $user])
|
2015-03-16 22:45:25 +01:00
|
|
|
@endif
|
|
|
|
|
|
|
|
<h1>{{ trans('texts.confirmation_header') }}</h1>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
{{ $invitationMessage . trans('texts.confirmation_message') }}<br/>
|
2015-04-06 08:58:47 +02:00
|
|
|
<a href='{!! URL::to("user/confirm/{$user->confirmation_code}") !!}'>
|
|
|
|
{!! URL::to("user/confirm/{$user->confirmation_code}")!!}
|
2015-03-16 22:45:25 +01:00
|
|
|
</a>
|
|
|
|
<p/>
|
|
|
|
|
|
|
|
{{ trans('texts.email_signature') }}<br/>
|
|
|
|
{{ trans('texts.email_from') }}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|