mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 18:08:06 +00:00
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
@extends('layouts.main')
|
|
|
|
@section('breadcrumb')
|
|
<li class="breadcrumb-item active" aria-current="page">Delete</li>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<header>
|
|
<h1><i class="material-icons-outlined">delete</i> Delete my account</h1>
|
|
|
|
<a href="{{ route('account.dashboard') }}" class="btn btn-secondary oppose">Cancel</a>
|
|
<input form="delete" class="btn" type="submit" value="Delete">
|
|
</header>
|
|
|
|
<form id="delete" method="POST" action="{{ route('account.destroy') }}" accept-charset="UTF-8">
|
|
@csrf
|
|
@method('delete')
|
|
|
|
<div class="large">
|
|
<p>You are going to permanently delete your account.</p>
|
|
<p>Please enter your complete username to confirm: <b>{{ $account->identifier }}</b>.</p>
|
|
</div>
|
|
|
|
<div>
|
|
<input placeholder="bob@example.net" name="identifier" type="text" value="{{ old('identifier') }}">
|
|
<label for="identifier">Username</label>
|
|
</div>
|
|
|
|
<div class="on_desktop"></div>
|
|
|
|
<input name="identifier_confirm" type="hidden" value="{{ $account->identifier }}">
|
|
|
|
<div>
|
|
</div>
|
|
</form>
|
|
@endsection
|