fix
This commit is contained in:
@@ -10,19 +10,23 @@
|
||||
<h1>{{ __('auth.forgot_password') }}</h1>
|
||||
</div>
|
||||
<div class="w-96">
|
||||
<form action="/forgot-password" method="POST" class="flex flex-col gap-2">
|
||||
@csrf
|
||||
<x-forms.input required value="test@example.com" type="email" name="email"
|
||||
label="{{ __('input.email') }}" autofocus />
|
||||
<x-forms.button type="submit">{{ __('auth.forgot_password_send_email') }}</x-forms.button>
|
||||
</form>
|
||||
@if (is_transactional_emails_active())
|
||||
<form action="/forgot-password" method="POST" class="flex flex-col gap-2">
|
||||
@csrf
|
||||
<x-forms.input required value="test@example.com" type="email" name="email"
|
||||
label="{{ __('input.email') }}" autofocus />
|
||||
<x-forms.button type="submit">{{ __('auth.forgot_password_send_email') }}</x-forms.button>
|
||||
</form>
|
||||
@else
|
||||
'asd'
|
||||
@endif
|
||||
@if ($errors->any())
|
||||
<div class="text-center text-error">
|
||||
<div class="text-xs text-center text-error">
|
||||
<span>{{ __('auth.failed') }}</span>
|
||||
</div>
|
||||
@endif
|
||||
@if (session('status'))
|
||||
<div class="mb-4 text-sm font-medium text-green-600">
|
||||
<div class="mb-4 text-xs font-medium text-green-600">
|
||||
{{ session('status') }}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@@ -2,11 +2,11 @@ Hello,<br><br>
|
||||
|
||||
You have been invited to "{{ $team }}" on "{{ config('app.name') }}".<br><br>
|
||||
|
||||
Please click here to accept the invitation: <a href="{{ $invitation_link }}">Accept Invitation</a><br><br>
|
||||
Please click here to accept the invitation: <a target="_blank" href="{{ $invitation_link }}">Accept Invitation</a><br><br>
|
||||
|
||||
If you have any questions, please contact the team owner.<br><br>
|
||||
|
||||
If it was not you who requested this invitation, please ignore this ema il, or instantly revoke the invitation by
|
||||
clicking here: <a href="{{ $invitation_link }}/revoke">Revoke Invitation</a><br><br>
|
||||
clicking here: <a target="_blank" href="{{ $invitation_link }}/revoke">Revoke Invitation</a><br><br>
|
||||
|
||||
Thank you.
|
||||
|
||||
5
resources/views/emails/reset-password.blade.php
Normal file
5
resources/views/emails/reset-password.blade.php
Normal file
@@ -0,0 +1,5 @@
|
||||
Hello,<br><br>
|
||||
|
||||
A password reset requested for your email address on "{{ config('app.name') }}".<br><br>
|
||||
|
||||
Please click the following link to reset your password: <a target="_blank" href="{{ $url }}">Password Reset</a>
|
||||
Reference in New Issue
Block a user