mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 02:37:42 +08:00
387109002e
- Use Symfony's Session component to work with sessions, instead of a custom database model. Separate the concept of access tokens from sessions once again. - Extract common session/remember cookie logic into SessionAuthenticator and Rememberer classes. - Extract AuthenticateUserTrait into a new AuthenticationResponseFactory class. - Fix forgot password process.
34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Reset Your Password</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Reset Your Password</h1>
|
|
|
|
<form class="form-horizontal" role="form" method="POST" action="{{ app('Flarum\Forum\UrlGenerator')->toRoute('savePassword') }}">
|
|
<input type="hidden" name="csrfToken" value="{{ $csrfToken }}">
|
|
<input type="hidden" name="passwordToken" value="{{ $passwordToken }}">
|
|
|
|
<div class="form-group">
|
|
<label class="control-label">Password</label>
|
|
<input type="password" class="form-control" name="password">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="control-label">Confirm Password</label>
|
|
<input type="password" class="form-control" name="password_confirmation">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-primary">Reset Password</button>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|