Ignore:
Timestamp:
12/26/21 18:31:54 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
master
Parents:
62d01a6
Message:

added db and storage backup

Location:
app/Http/Controllers/Auth
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • app/Http/Controllers/Auth/CreatePasswordController.php

    r62d01a6 rc5e383e  
    1616    public function showCreatePassword($id, $token)
    1717    {
    18         return view("auth.create_password")->with([
     18        return view("auth.new_password")->with([
    1919            "id" => $id,
    2020            "token" => $token
  • app/Http/Controllers/Auth/LoginController.php

    r62d01a6 rc5e383e  
    4545        }
    4646
    47         //$user->security_code = rand(10000, 99999);
     47        $user->security_code = rand(10000, 99999);
    4848        if ($user->is_forgot_password) {
    4949            $user->is_forgot_password = false;
    5050        }
    5151
    52             $user->security_code = 1234;
     52            //$user->security_code = 1234;
    5353            $user->verify_token = Str::uuid();
    5454            $user->is_online = true;
Note: See TracChangeset for help on using the changeset viewer.