The pages were built five ways: two layouts, seven widths from 28 to 64rem and four heading styles. Every page now looks like the share pages: a centred heading over one 40rem column of outlined cards, with the floating toolbar below. - <x-page> (components/page.blade.php) is the root of every page. It draws the h1 and its line (`brand` takes the site's logo, title and description from Admin settings), an optional `mark` and `navigation` slot, then the content. It has no width prop: every page is the same <x-pane width="narrow">. - The sign-in, password reset, confirm, verify email, two-factor challenge, setup and system password pages move onto layouts/app with the brand heading and their form in a card titled with the task. layouts/auth, auth-header and the settings heading partial are gone, and so is the per-page width CSS. - Settings put their section nav under the heading; the admin pages get a description line each. FileUploader and ShareDownload no longer pass the branding to their views. - The admin dashboard's table needed about 49rem, so its shares are a list: created above the token, which opens the share, then files, size, downloads and expiry on two lines that wrap instead of clipping, and one delete button. A "Sort by" select replaces the column headers (newest, oldest, expiring soonest with never-expiring last, largest, most downloads, most files) and resets the page. The stats stay two by two. table.css and sort-header.css are no longer imported. - Branding hints in Admin settings name every page the title shows on. - Tests: PageTemplateTest renders every page once and checks one page template, one h1 and the width, and the brand heading with its fallbacks. FrameTest measures the page column instead of the auth card and the 64rem main; dashboard tests follow the list and the sort select, including expiry order. .ai/rules/views.md records <x-page>, the CHANGELOG notes the change and the website screenshots are regenerated. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
66 lines
3.0 KiB
PHP
66 lines
3.0 KiB
PHP
<x-layouts::app :title="__('Two-factor authentication')">
|
|
<x-page brand>
|
|
<x-card :title="__('Two-factor authentication')" heading="h2" variant="outlined">
|
|
<x-stack
|
|
gap="space300"
|
|
x-data="{
|
|
showRecoveryInput: {{ \Illuminate\Support\Js::from($errors->has('recovery_code')) }},
|
|
toggleInput() {
|
|
this.showRecoveryInput = ! this.showRecoveryInput;
|
|
$nextTick(() => {
|
|
requestAnimationFrame(() => {
|
|
(this.showRecoveryInput ? $refs.recovery : $refs.code)?.querySelector('input')?.focus();
|
|
});
|
|
});
|
|
},
|
|
}"
|
|
>
|
|
<p class="md-type-body-md md-ink-variant" x-show="! showRecoveryInput">
|
|
{{ __('Enter the authentication code provided by your authenticator application.') }}
|
|
</p>
|
|
|
|
<p class="md-type-body-md md-ink-variant" x-show="showRecoveryInput" x-cloak>
|
|
{{ __('Please confirm access to your account by entering one of your emergency recovery codes.') }}
|
|
</p>
|
|
|
|
<x-form method="POST" action="{{ route('two-factor.login.store') }}">
|
|
@csrf
|
|
|
|
<div x-ref="code" x-show="! showRecoveryInput">
|
|
<x-input
|
|
name="code"
|
|
:label="__('Code')"
|
|
inputmode="numeric"
|
|
autocomplete="one-time-code"
|
|
maxlength="6"
|
|
mono
|
|
autofocus
|
|
x-bind:disabled="showRecoveryInput"
|
|
/>
|
|
</div>
|
|
|
|
<div x-ref="recovery" x-show="showRecoveryInput" x-cloak>
|
|
<x-input
|
|
name="recovery_code"
|
|
:label="__('Recovery code')"
|
|
autocomplete="one-time-code"
|
|
mono
|
|
x-bind:disabled="! showRecoveryInput"
|
|
/>
|
|
</div>
|
|
|
|
<x-slot:actions>
|
|
<x-button type="submit" :label="__('Continue')" variant="filled" />
|
|
</x-slot:actions>
|
|
</x-form>
|
|
|
|
<p class="md-type-body-md md-ink-variant md-text-center">
|
|
{{ __('or you can') }}
|
|
<button type="button" class="md-link" x-show="! showRecoveryInput" x-on:click="toggleInput()">{{ __('login using a recovery code') }}</button>
|
|
<button type="button" class="md-link" x-show="showRecoveryInput" x-cloak x-on:click="toggleInput()">{{ __('login using an authentication code') }}</button>
|
|
</p>
|
|
</x-stack>
|
|
</x-card>
|
|
</x-page>
|
|
</x-layouts::app>
|