]> BookStack Code Mirror - bookstack/blob - resources/views/auth/user-unconfirmed.blade.php
Replaced use of custom 'baseUrl' helper with 'url'
[bookstack] / resources / views / auth / user-unconfirmed.blade.php
1 @extends('simple-layout')
2
3 @section('content')
4
5     <div class="container very-small mt-xl">
6         <div class="card content-wrap auto-height">
7             <h1 class="list-heading">{{ trans('auth.email_not_confirmed') }}</h1>
8
9             <p>{{ trans('auth.email_not_confirmed_text') }}<br>
10                 {{ trans('auth.email_not_confirmed_click_link') }}
11             </p>
12             <p>
13                 {{ trans('auth.email_not_confirmed_resend') }}
14             </p>
15
16             <form action="{{ url("/register/confirm/resend") }}" method="POST" class="stretch-inputs">
17                 {!! csrf_field() !!}
18                 <div class="form-group">
19                     <label for="email">{{ trans('auth.email') }}</label>
20                     @if(auth()->check())
21                         @include('form.text', ['name' => 'email', 'model' => auth()->user()])
22                     @else
23                         @include('form.text', ['name' => 'email'])
24                     @endif
25                 </div>
26                 <div class="form-group text-right mt-m">
27                     <button type="submit" class="button primary">{{ trans('auth.email_not_confirmed_resend_button') }}</button>
28                 </div>
29             </form>
30
31         </div>
32     </div>
33
34 @stop