mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
75 lines
3.9 KiB
PHP
75 lines
3.9 KiB
PHP
@extends('layouts.guest')
|
|
|
|
@section('content')
|
|
<div class="min-h-screen flex items-center justify-center bg-gray-100 dark:bg-gray-900 py-12 px-4 sm:px-6 lg:px-8">
|
|
<div class="max-w-md w-full space-y-8">
|
|
<div class="text-center">
|
|
<a href="{{ url('/') }}" class="inline-flex items-center justify-center mb-4">
|
|
<div class="w-16 h-16 bg-blue-600 dark:bg-gray-700 rounded-full flex items-center justify-center shadow-lg">
|
|
<i class="fas fa-lock text-3xl text-white"></i>
|
|
</div>
|
|
</a>
|
|
<h2 class="mt-4 text-3xl font-extrabold text-gray-900 dark:text-white">
|
|
{{ __('Confirm Password') }}
|
|
</h2>
|
|
<p class="mt-2 text-sm text-gray-700 dark:text-gray-300">
|
|
{{ __('Please confirm your password before continuing.') }}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="bg-white dark:bg-gray-800 rounded-2xl shadow-xl overflow-hidden">
|
|
<div class="px-8 py-6">
|
|
<form method="POST" action="{{ route('password.confirm') }}" class="space-y-6">
|
|
@csrf
|
|
|
|
<div>
|
|
<label for="password" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
|
|
{{ __('Password') }}
|
|
</label>
|
|
<div class="relative">
|
|
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
|
|
<i class="fas fa-lock text-gray-400"></i>
|
|
</div>
|
|
<input
|
|
id="password"
|
|
type="password"
|
|
name="password"
|
|
required
|
|
autocomplete="current-password"
|
|
class="block w-full pl-10 pr-3 py-3 border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition @error('password') border-red-500 @enderror"
|
|
placeholder="Enter your password"
|
|
>
|
|
</div>
|
|
@error('password')
|
|
<p class="mt-2 text-sm text-red-600 dark:text-red-400">{{ $message }}</p>
|
|
@enderror
|
|
</div>
|
|
|
|
<div class="flex items-center justify-between">
|
|
<button
|
|
type="submit"
|
|
class="flex justify-center items-center py-3 px-6 border border-transparent rounded-lg shadow-sm text-sm font-medium text-white bg-blue-600 dark:bg-blue-700 hover:bg-blue-700 dark:hover:bg-blue-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition"
|
|
>
|
|
<i class="fas fa-check mr-2"></i>
|
|
{{ __('Confirm Password') }}
|
|
</button>
|
|
|
|
@if (Route::has('password.request'))
|
|
<a class="text-sm font-medium text-blue-600 dark:text-blue-400 hover:text-blue-500 transition" href="{{ route('password.request') }}">
|
|
{{ __('Forgot Your Password?') }}
|
|
</a>
|
|
@endif
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="px-8 py-4 bg-gray-50 dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700">
|
|
<a href="{{ url('/') }}" class="text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 transition">
|
|
<i class="fas fa-home mr-1"></i> Back to home
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|