Initial commit for new repo
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 1m4s

This commit is contained in:
dhanabalan
2025-12-16 17:05:04 +05:30
commit 3f0d529640
862 changed files with 141157 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Reset Password</title>
</head>
<body>
<h1>Reset Password</h1>
<form method="POST" action="{{ route('password.update') }}">
@csrf
<input type="hidden" name="token" value="{{ $token }}">
<label>Email:</label>
<input type="email" name="email" value="{{ old('email') }}" required>
<label>New Password:</label>
<input type="password" name="password" required>
<label>Confirm Password:</label>
<input type="password" name="password_confirmation" required>
<button type="submit">Reset Password</button>
</form>
<a href="{{ route('login') }}">Back to login</a>
</body>
</html>