flexisip-account-manager/flexiapi/resources/views/parts/password_recovery.blade.php
Timothée Jaussoin 354830da7e QRCode based authentication
Add routes, model and controller for AuthToken
Create auth_tokens table
Allow auth_token to be used for provisioning
Reorganize the API
Update the dependencies
2022-07-12 15:14:46 +02:00

11 lines
No EOL
513 B
PHP

@if (config('app.web_panel'))
<p class="text-center pt-3">
Set or recover your password using your <a href="{{ route('account.login_email') }}">Email address</a>
@if (config('app.phone_authentication'))
or your <a href="{{ route('account.login_phone') }}">Phone number</a>
@endif
</p>
<p class="text-center">
…or login using an already authenticated device <a href="{{ route('account.authenticate.auth_token') }}">by flashing a QRcode</a>.
</p>
@endif