Initial commit for new repo
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 1m4s
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 1m4s
This commit is contained in:
28
resources/views/auth/reset-password.blade.php
Normal file
28
resources/views/auth/reset-password.blade.php
Normal 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>
|
||||
Reference in New Issue
Block a user