mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
28 lines
No EOL
1.3 KiB
PHP
28 lines
No EOL
1.3 KiB
PHP
@extends('layouts.main', ['welcome' => true])
|
|
|
|
@section('content')
|
|
|
|
<section>
|
|
<h1><i class="ph">user-circle</i> {{ __('Account recovery') }}</h1>
|
|
<form method="POST" action="{{ route('account.recovery.confirm') }}" accept-charset="UTF-8">
|
|
@csrf
|
|
|
|
<p class="large">{{ __('Enter the code you received below') }}</p>
|
|
<div class="large">
|
|
<input oninput="digitFilled(this)" onfocus="this.value = ''" autofocus class="digit" name="number_1" type="number" min="0" max="9">
|
|
<input oninput="digitFilled(this)" onfocus="this.value = ''" class="digit" name="number_2" type="number" min="0" max="9">
|
|
<input oninput="digitFilled(this)" onfocus="this.value = ''" class="digit" name="number_3" type="number" min="0" max="9">
|
|
<input oninput="digitFilled(this)" onfocus="this.value = ''" class="digit" name="number_4" type="number" min="0" max="9">
|
|
|
|
<input name="method" type="hidden" value="{{ $method }}">
|
|
<input name="account_id" type="hidden" value="{{ $account_id }}">
|
|
</div>
|
|
<div class="large">
|
|
<input class="btn oppose" type="submit" value="{{ __('Login') }}">
|
|
</div>
|
|
</form>
|
|
</section>
|
|
<section class="on_desktop">
|
|
<img src="{{ asset('img/lock.svg') }}">
|
|
</section>
|
|
@endsection |