mirror of
https://github.com/supanadit/todo.git
synced 2024-11-10 09:52:19 +00:00
Hide Forgot Password because of not ready yet
This commit is contained in:
parent
405a1ee7fa
commit
82a80fc1ef
33
app/Mail/ForgotPassword.php
Normal file
33
app/Mail/ForgotPassword.php
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Mail;
|
||||||
|
|
||||||
|
use Illuminate\Bus\Queueable;
|
||||||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
use Illuminate\Mail\Mailable;
|
||||||
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
|
||||||
|
class ForgotPassword extends Mailable
|
||||||
|
{
|
||||||
|
use Queueable, SerializesModels;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new message instance.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build the message.
|
||||||
|
*
|
||||||
|
* @return $this
|
||||||
|
*/
|
||||||
|
public function build()
|
||||||
|
{
|
||||||
|
return $this->view('view.name');
|
||||||
|
}
|
||||||
|
}
|
@ -51,7 +51,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-8">
|
<div class="col-xs-8">
|
||||||
Version 1.0.0
|
Version 1.0.0<br/>
|
||||||
|
<a href="/register" class="text-center">Create account</a>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.col -->
|
<!-- /.col -->
|
||||||
<div class="col-xs-4">
|
<div class="col-xs-4">
|
||||||
@ -60,14 +61,7 @@
|
|||||||
<!-- /.col -->
|
<!-- /.col -->
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
{{-- <a href="/forgot/password">Forgot Password</a><br>--}}
|
||||||
<div class="social-auth-links text-center">
|
|
||||||
<p>- OR -</p>
|
|
||||||
</div>
|
|
||||||
<!-- /.social-auth-links -->
|
|
||||||
|
|
||||||
<a href="/forgot/password">Forgot Password</a><br>
|
|
||||||
<a href="/register" class="text-center">Register</a>
|
|
||||||
</div>
|
</div>
|
||||||
<!-- /.login-box-body -->
|
<!-- /.login-box-body -->
|
||||||
</div>
|
</div>
|
||||||
|
@ -15,7 +15,7 @@ use Illuminate\Support\Facades\Route;
|
|||||||
|
|
||||||
Route::get('/', "SecurityController@initSystem");
|
Route::get('/', "SecurityController@initSystem");
|
||||||
Route::get('/login', "SecurityController@viewLogin")->name('login');
|
Route::get('/login', "SecurityController@viewLogin")->name('login');
|
||||||
Route::get('/forgot/password', "SecurityController@viewForgotPassword");
|
//Route::get('/forgot/password', "SecurityController@viewForgotPassword");
|
||||||
Route::get('/register', "SecurityController@viewRegister");
|
Route::get('/register', "SecurityController@viewRegister");
|
||||||
|
|
||||||
Route::middleware('auth.web')->group(function () {
|
Route::middleware('auth.web')->group(function () {
|
||||||
|
Loading…
Reference in New Issue
Block a user