15 lines
574 B
PHP
15 lines
574 B
PHP
@extends('layouts.app')
|
|
@section('title', '2FA')
|
|
@section('heading', 'Authentifizierung')
|
|
|
|
@section('content')
|
|
<div class="hexahost-card mx-auto max-w-md p-6">
|
|
<form method="POST" action="{{ route('two-factor.challenge.store') }}" class="space-y-4">
|
|
@csrf
|
|
<label class="block text-sm opacity-80">Code aus Authenticator-App</label>
|
|
<input type="text" name="code" inputmode="numeric" required class="hexahost-input w-full px-3 py-2">
|
|
<button class="hexahost-btn-primary w-full px-4 py-2">Bestätigen</button>
|
|
</form>
|
|
</div>
|
|
@endsection
|