PHP Classes

File: resources/views/filament/pages/auth/reset-password.blade.php

Recommend this page to a friend!
  Packages of Nemeth Zoltan   Cards API PHP   resources/views/filament/pages/auth/reset-password.blade.php   Download  
File: resources/views/filament/pages/auth/reset-password.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Cards API PHP
Manage trading cards, decks, games, and creators
Author: By
Last change:
Date: 12 days ago
Size: 2,586 bytes
 

Contents

Class file image Download
<x-filament-panels::page.simple>
    {{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\View\PanelsRenderHook::AUTH_PASSWORD_RESET_RESET_FORM_BEFORE, scopes: $this->getRenderHookScopes()) }}

    <x-filament-panels::form wire:submit="resetPassword">
        {{ $this->form }}

        <x-filament-panels::form.actions
            :actions="$this->getCachedFormActions()"
            :full-width="$this->hasFullWidthFormActions()"
        />
    </x-filament-panels::form>

    {{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\View\PanelsRenderHook::AUTH_PASSWORD_RESET_RESET_FORM_AFTER, scopes: $this->getRenderHookScopes()) }}

    @push('styles')
        <style>
            /* Cards Forge Auth Page Styling */
            .fi-simple-page {
                background: #f8fafc;
                min-height: auto !important;
                padding: 3rem 0 !important;
            }

            .fi-simple-layout {
                min-height: auto !important;
            }

            .fi-simple-main {
                background: #ffffff;
                border: 1px solid #e2e8f0;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
                margin-top: 0 !important;
                margin-bottom: 0 !important;
            }

            /* Card suit decorations */
            .fi-simple-main::before {
                content: '? ? ? ?';
                display: block;
                text-align: center;
                font-size: 1.5rem;
                color: #cbd5e1;
                letter-spacing: 1rem;
                margin-bottom: 1rem;
                opacity: 0.5;
            }

            /* Heading styling */
            .fi-simple-header-heading {
                color: #1e293b;
                font-weight: 700;
            }

            /* Submit button */
            .fi-btn-primary {
                background: #ef4444 !important;
                border: none !important;
                font-weight: 600 !important;
                letter-spacing: 0.025em !important;
                transition: all 0.3s ease !important;
            }

            .fi-btn-primary:hover {
                background: #dc2626 !important;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
            }

            /* Links */
            .fi-link {
                color: #ef4444 !important;
            }

            .fi-link:hover {
                color: #dc2626 !important;
            }
        </style>
    @endpush
</x-filament-panels::page.simple>