mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
44 lines
1.6 KiB
PHP
44 lines
1.6 KiB
PHP
@extends('layouts.main', ['welcome' => true])
|
|
|
|
@section('content')
|
|
<section>
|
|
<h1 style="margin-bottom: 4rem;"><i class="ph">user-circle</i> Validate your email</h1>
|
|
|
|
<form method="POST" action="{{ route('account.email.update') }}" accept-charset="UTF-8">
|
|
@csrf
|
|
|
|
<div class="large">
|
|
<p>A verification code was sent by email on <b>{{ $emailChangeCode->email }}</b>.</p>
|
|
<p>Please enter the verification code below:</p>
|
|
</div>
|
|
|
|
<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">
|
|
@include('parts.errors', ['name' => 'code'])
|
|
</div>
|
|
|
|
<div>
|
|
<input class="btn" type="submit" value="Validate">
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<div class="large" style="margin-top: 2rem;">
|
|
<p>
|
|
You didn't receive the code?
|
|
<a class="btn btn-secondary" href="{{ route('account.email.change') }}">Resend a code</a>
|
|
</p>
|
|
</div>
|
|
|
|
</section>
|
|
<section class="on_desktop">
|
|
<img src="{{ asset('img/lock.svg') }}">
|
|
</section>
|
|
@endsection
|
|
|
|
@section('footer')
|
|
Hop
|
|
@endsection
|