Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
b5a8c279
Commit
b5a8c279
authored
Jul 10, 2016
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add files
parent
9c817e7a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
174 additions
and
0 deletions
+174
-0
app/Http/Controllers/Auth/ForgotPasswordController.php
+32
-0
app/Http/Controllers/Auth/LoginController.php
+39
-0
app/Http/Controllers/Auth/RegisterController.php
+71
-0
app/Http/Controllers/Auth/ResetPasswordController.php
+32
-0
No files found.
app/Http/Controllers/Auth/ForgotPasswordController.php
0 → 100644
View file @
b5a8c279
<?php
namespace
App\Http\Controllers\Auth
;
use
App\Http\Controllers\Controller
;
use
Illuminate\Foundation\Auth\SendsPasswordResetEmails
;
class
ForgotPasswordController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset emails and
| includes a trait which assists in sending these notifications from
| your application to your users. Feel free to explore this trait.
|
*/
use
SendsPasswordResetEmails
;
/**
* Create a new controller instance.
*
* @return void
*/
public
function
__construct
()
{
$this
->
middleware
(
'guest'
);
}
}
app/Http/Controllers/Auth/LoginController.php
0 → 100644
View file @
b5a8c279
<?php
namespace
App\Http\Controllers\Auth
;
use
App\Http\Controllers\Controller
;
use
Illuminate\Foundation\Auth\AuthenticatesUsers
;
class
LoginController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Login Controller
|--------------------------------------------------------------------------
|
| This controller handles authenticating users for the application and
| redirecting them to your home screen. The controller uses a trait
| to conveniently provide this functionality to your appliations.
|
*/
use
AuthenticatesUsers
;
/**
* Where to redirect users after login / registration.
*
* @var string
*/
protected
$redirectTo
=
'/home'
;
/**
* Create a new controller instance.
*
* @return void
*/
public
function
__construct
()
{
$this
->
middleware
(
'guest'
,
[
'except'
=>
'logout'
]);
}
}
app/Http/Controllers/Auth/RegisterController.php
0 → 100644
View file @
b5a8c279
<?php
namespace
App\Http\Controllers\Auth
;
use
App\User
;
use
Validator
;
use
App\Http\Controllers\Controller
;
use
Illuminate\Foundation\Auth\RegistersUsers
;
class
RegisterController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Register Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users as well as their
| validation and creation. By default this controller uses a trait to
| provide this functionality without requiring any additional code.
|
*/
use
RegistersUsers
;
/**
* Where to redirect users after login / registration.
*
* @var string
*/
protected
$redirectTo
=
'/home'
;
/**
* Create a new controller instance.
*
* @return void
*/
public
function
__construct
()
{
$this
->
middleware
(
'guest'
);
}
/**
* Get a validator for an incoming registration request.
*
* @param array $data
* @return \Illuminate\Contracts\Validation\Validator
*/
protected
function
validator
(
array
$data
)
{
return
Validator
::
make
(
$data
,
[
'name'
=>
'required|max:255'
,
'email'
=>
'required|email|max:255|unique:users'
,
'password'
=>
'required|min:6|confirmed'
,
]);
}
/**
* Create a new user instance after a valid registration.
*
* @param array $data
* @return User
*/
protected
function
create
(
array
$data
)
{
return
User
::
create
([
'name'
=>
$data
[
'name'
],
'email'
=>
$data
[
'email'
],
'password'
=>
bcrypt
(
$data
[
'password'
]),
]);
}
}
app/Http/Controllers/Auth/ResetPasswordController.php
0 → 100644
View file @
b5a8c279
<?php
namespace
App\Http\Controllers\Auth
;
use
App\Http\Controllers\Controller
;
use
Illuminate\Foundation\Auth\ResetsPasswords
;
class
ResetPasswordController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset requests
| and uses a simple trait to include this behavior. You're free to
| explore this trait and override any methods you wish to tweak.
|
*/
use
ResetsPasswords
;
/**
* Create a new controller instance.
*
* @return void
*/
public
function
__construct
()
{
$this
->
middleware
(
'guest'
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment