All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 1m4s
29 lines
741 B
PHP
29 lines
741 B
PHP
<!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>
|