| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/attached_files/009 Create a database table to store user accounts/source-code.zip |
373 B |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/attached_files/010 Create and display the signup page/source-code.zip |
469 KB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/attached_files/011 Add the form to the signup page/source-code.zip |
469 KB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/attached_files/012 Create the signup action in the controller/source-code.zip |
469 KB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/attached_files/013 Understand the danger from SQL injection attacks/source-code.zip |
1 KB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/attached_files/014 Avoid SQL injection attacks using PDO/source-code.zip |
3 KB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/attached_files/015 Add a user model with a save method/source-code.zip |
469 KB |
| [FreeTutorials.Us] php-mvc-login/03 Validate the signup data on the server/attached_files/016 Validate the data before saving the new user record/source-code.zip |
470 KB |
| [FreeTutorials.Us] php-mvc-login/03 Validate the signup data on the server/attached_files/017 Validate the email address is unique in the user table/source-code.zip |
470 KB |
| [FreeTutorials.Us] php-mvc-login/03 Validate the signup data on the server/attached_files/018 Display validation error messages in the signup form/source-code.zip |
470 KB |
| [FreeTutorials.Us] php-mvc-login/03 Validate the signup data on the server/attached_files/020 Redirecting to another page using PHP how why and best practices/source-code.zip |
691 B |
| [FreeTutorials.Us] php-mvc-login/03 Validate the signup data on the server/attached_files/021 Redirect to the success page after a successful signup/source-code.zip |
470 KB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/attached_files/022 Why you should validate data on the server as well as the client/source-code.zip |
701 B |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/attached_files/023 Validate the signup page in the browser using HTML5 validation/source-code.zip |
470 KB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/attached_files/024 Add a JavaScript validation library/source-code.zip |
470 KB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/attached_files/025 Validate the signup page in the browser using JavaScript/source-code.zip |
470 KB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/attached_files/026 Validate the format of the password with a custom validation method/source-code.zip |
471 KB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/attached_files/027 Validate the email address is unique using an Ajax request/source-code.zip |
471 KB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/attached_files/029 Remove the password confirmation field and add a show password button/source-code.zip |
474 KB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/attached_files/030 Create and display the login page/source-code.zip |
475 KB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/attached_files/031 Create the login action in the controller/source-code.zip |
475 KB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/attached_files/032 Find the user object using the email address/source-code.zip |
475 KB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/attached_files/033 Authenticate the user by verifying their password is correct/source-code.zip |
475 KB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/attached_files/034 Redisplay the email address in the login form when authentication fails/source-code.zip |
475 KB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/attached_files/035 Add a redirect method to the core controller/source-code.zip |
475 KB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/attached_files/036 Sessions in PHP make the web browser remember you/source-code.zip |
603 B |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/attached_files/037 Use the session to remember the login and view the logged-in status/source-code.zip |
475 KB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/attached_files/038 Sessions in PHP completely destroy a session even without closing the browser/source-code.zip |
779 B |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/attached_files/039 Destroy the session to log the user out/source-code.zip |
475 KB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/attached_files/040 Sessions in PHP prevent session fixation attacks/source-code.zip |
475 KB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/attached_files/041 Add a class to organise the authentication code in one place/source-code.zip |
476 KB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/attached_files/042 Restrict a page to logged-in users only/source-code.zip |
476 KB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/attached_files/043 Redirect back to the originally requested page after login/source-code.zip |
477 KB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/attached_files/044 Add a method to the core controller for requiring login/source-code.zip |
477 KB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/attached_files/045 Require login for all action methods in a controller/source-code.zip |
477 KB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/attached_files/046 Add a base controller that requires login for all action methods/source-code.zip |
477 KB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/attached_files/047 Get the current authenticated user in controllers and views/source-code.zip |
477 KB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/attached_files/048 Simplify the code remove the isLoggedIn method/source-code.zip |
477 KB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/attached_files/050 Add a flash message when requiring login/source-code.zip |
478 KB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/attached_files/051 Display the flash messages to the user/source-code.zip |
478 KB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/attached_files/052 Add flash messages when logging in/source-code.zip |
478 KB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/attached_files/053 Add a flash message when logging out/source-code.zip |
478 KB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/attached_files/054 Add a CSS style sheet and style the flash messages/source-code.zip |
478 KB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/attached_files/055 Add flash message types and give them different styles/source-code.zip |
479 KB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/attached_files/056 How to remember the login after closing the browser/source-code.zip |
479 KB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/attached_files/058 Add a class to generate and create hashes of random tokens/source-code.zip |
479 KB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/attached_files/059 Create a database table to store remembered logins/source-code.zip |
406 B |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/attached_files/060 Add a remember me checkbox to the login form/source-code.zip |
479 KB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/attached_files/061 Remember the login in the database/source-code.zip |
480 KB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/attached_files/062 Cookies in PHP the basics/source-code.zip |
1 KB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/attached_files/063 Remember the login in a cookie/source-code.zip |
480 KB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/attached_files/064 Log in automatically using the token in the cookie/source-code.zip |
481 KB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/attached_files/065 Prevent automatic login if the remember token has expired in the database/source-code.zip |
480 KB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/attached_files/066 Forget the remembered login when logging out/source-code.zip |
481 KB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/attached_files/068 Get access to an email service/source-code.zip |
1.2 MB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/attached_files/069 Add a class to send emails/source-code.zip |
988 KB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/attached_files/070 Create and display the forgotten password page/source-code.zip |
989 KB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/attached_files/071 Process the forgotten password form in the controller/source-code.zip |
989 KB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/attached_files/072 Add password reset fields to the user table in the database/source-code.zip |
307 B |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/attached_files/073 Save a new password reset token and expiry with the user record/source-code.zip |
989 KB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/attached_files/074 Send the password reset email to the user/source-code.zip |
990 KB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/attached_files/075 Get the email content from a view template/source-code.zip |
990 KB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/attached_files/076 Add an action to process the link and get the token from the URL/source-code.zip |
990 KB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/attached_files/077 Get the user based on the token and check the expiry/source-code.zip |
990 KB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/attached_files/078 Create and display the password reset form/source-code.zip |
991 KB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/attached_files/079 Extract repeated JavaScript code out into a separate file/source-code.zip |
991 KB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/attached_files/080 Process the password reset form in the controller/source-code.zip |
991 KB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/attached_files/081 Remove duplicated code and add an expired token view/source-code.zip |
992 KB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/attached_files/082 Validate the password reset form on the server/source-code.zip |
992 KB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/attached_files/083 Reset the users password and clear the token and expiry/source-code.zip |
992 KB |
| [FreeTutorials.Us] php-mvc-login/11 Account activation confirm the users email address before allowing login/attached_files/085 Add account activation fields to the user table in the database/source-code.zip |
334 B |
| [FreeTutorials.Us] php-mvc-login/11 Account activation confirm the users email address before allowing login/attached_files/086 Generate a unique activation token upon signup/source-code.zip |
992 KB |
| [FreeTutorials.Us] php-mvc-login/11 Account activation confirm the users email address before allowing login/attached_files/087 Send the account activation email to the user/source-code.zip |
993 KB |
| [FreeTutorials.Us] php-mvc-login/11 Account activation confirm the users email address before allowing login/attached_files/088 Restrict login if account not activated/source-code.zip |
993 KB |
| [FreeTutorials.Us] php-mvc-login/11 Account activation confirm the users email address before allowing login/attached_files/089 Process the account activation link and activate the account/source-code.zip |
993 KB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/attached_files/090 User profile let the user update their own details/source-code.zip |
994 KB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/attached_files/091 Get the current logged-in user and display their profile data/source-code.zip |
994 KB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/attached_files/092 Create and display the edit profile form/source-code.zip |
995 KB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/attached_files/093 Validate the email address is unique allowing for the existing user record/source-code.zip |
995 KB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/attached_files/094 Make changing the password optional but still validate it if supplied/source-code.zip |
995 KB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/attached_files/095 Validate and save the profile data on the server/source-code.zip |
995 KB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/attached_files/096 Clean up duplicated code in the profile controller/source-code.zip |
995 KB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/attached_files/097 Add site navigation with a link to the profile page/source-code.zip |
995 KB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/attached_files/099 Include the Bootstrap framework/source-code.zip |
996 KB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/attached_files/100 Add a container element and style the general layout/source-code.zip |
996 KB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/attached_files/101 Add styles to forms and input controls/source-code.zip |
996 KB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/attached_files/102 Add styles to buttons/source-code.zip |
996 KB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/attached_files/103 Turn the navigation links into a navbar component/source-code.zip |
996 KB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/attached_files/104 Replace the flash message styles/source-code.zip |
996 KB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/attached_files/105 Add styles when showing the users profile data/source-code.zip |
996 KB |
| [FreeTutorials.Us] php-mvc-login/14 Conclusion/attached_files/106 Conclusion/full.sql |
1 KB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/quizzes/001 New user signup.html |
10 KB |
| [FreeTutorials.Us] php-mvc-login/03 Validate the signup data on the server/quizzes/002 Validate the signup data on the server.html |
6 KB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/quizzes/003 Validate the signup data in the browser.html |
7 KB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/quizzes/004 Login.html |
8 KB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/quizzes/005 Remember me.html |
6 KB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/quizzes/006 Password reset.html |
5 KB |
| [FreeTutorials.Us] php-mvc-login/01 Introduction and project setup/001 Introduction.mp4 |
2.8 MB |
| [FreeTutorials.Us] php-mvc-login/01 Introduction and project setup/002 Install a PHP web server and a database server on your computer.mp4 |
4.2 MB |
| [FreeTutorials.Us] php-mvc-login/01 Introduction and project setup/003 Install the PHP MVC framework.mp4 |
3.2 MB |
| [FreeTutorials.Us] php-mvc-login/01 Introduction and project setup/004 Configure the web server to use the framework.mp4 |
2.6 MB |
| [FreeTutorials.Us] php-mvc-login/01 Introduction and project setup/005 Create a new database and configure the framework to use it.mp4 |
5.6 MB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/006 Uniquely identify users username or email address.mp4 |
4.3 MB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/007 Store passwords as securely as possible in the database.mp4 |
7.3 MB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/008 Generate secure salted password hashes.mp4 |
7.8 MB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/009 Create a database table to store user accounts.mp4 |
5.8 MB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/010 Create and display the signup page.mp4 |
4 MB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/011 Add the form to the signup page.mp4 |
6.2 MB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/012 Create the signup action in the controller.mp4 |
2.8 MB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/013 Understand the danger from SQL injection attacks.mp4 |
6.9 MB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/014 Avoid SQL injection attacks using PDO.mp4 |
7.2 MB |
| [FreeTutorials.Us] php-mvc-login/02 New user signup create the registration form and save the data in the database/015 Add a user model with a save method.mp4 |
8.5 MB |
| [FreeTutorials.Us] php-mvc-login/03 Validate the signup data on the server/016 Validate the data before saving the new user record.mp4 |
9.4 MB |
| [FreeTutorials.Us] php-mvc-login/03 Validate the signup data on the server/017 Validate the email address is unique in the user table.mp4 |
5.1 MB |
| [FreeTutorials.Us] php-mvc-login/03 Validate the signup data on the server/018 Display validation error messages in the signup form.mp4 |
6.1 MB |
| [FreeTutorials.Us] php-mvc-login/03 Validate the signup data on the server/019 Prevent duplicate form submissions using the Post Redirect Get pattern.mp4 |
3.6 MB |
| [FreeTutorials.Us] php-mvc-login/03 Validate the signup data on the server/020 Redirecting to another page using PHP how why and best practices.mp4 |
9.4 MB |
| [FreeTutorials.Us] php-mvc-login/03 Validate the signup data on the server/021 Redirect to the success page after a successful signup.mp4 |
2 MB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/022 Why you should validate data on the server as well as the client.mp4 |
4.7 MB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/023 Validate the signup page in the browser using HTML5 validation.mp4 |
5.5 MB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/024 Add a JavaScript validation library.mp4 |
7 MB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/025 Validate the signup page in the browser using JavaScript.mp4 |
5.8 MB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/026 Validate the format of the password with a custom validation method.mp4 |
4.3 MB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/027 Validate the email address is unique using an Ajax request.mp4 |
9.4 MB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/028 The password confirmation field why its a problem and how to fix it.mp4 |
5.3 MB |
| [FreeTutorials.Us] php-mvc-login/04 Validate the signup data in the browser/029 Remove the password confirmation field and add a show password button.mp4 |
5.1 MB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/030 Create and display the login page.mp4 |
5.9 MB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/031 Create the login action in the controller.mp4 |
3.6 MB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/032 Find the user object using the email address.mp4 |
9.2 MB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/033 Authenticate the user by verifying their password is correct.mp4 |
6.1 MB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/034 Redisplay the email address in the login form when authentication fails.mp4 |
2.5 MB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/035 Add a redirect method to the core controller.mp4 |
3.7 MB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/036 Sessions in PHP make the web browser remember you.mp4 |
8.7 MB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/037 Use the session to remember the login and view the logged-in status.mp4 |
7.3 MB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/038 Sessions in PHP completely destroy a session even without closing the browser.mp4 |
6.3 MB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/039 Destroy the session to log the user out.mp4 |
4.6 MB |
| [FreeTutorials.Us] php-mvc-login/05 Login authenticate the user using their email address and password/040 Sessions in PHP prevent session fixation attacks.mp4 |
7.8 MB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/041 Add a class to organise the authentication code in one place.mp4 |
7.6 MB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/042 Restrict a page to logged-in users only.mp4 |
5 MB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/043 Redirect back to the originally requested page after login.mp4 |
5.3 MB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/044 Add a method to the core controller for requiring login.mp4 |
3.6 MB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/045 Require login for all action methods in a controller.mp4 |
3.5 MB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/046 Add a base controller that requires login for all action methods.mp4 |
5.8 MB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/047 Get the current authenticated user in controllers and views.mp4 |
6.4 MB |
| [FreeTutorials.Us] php-mvc-login/06 Restrict access to authenticated users only/048 Simplify the code remove the isLoggedIn method.mp4 |
4.8 MB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/049 Flash notification messages display status messages to users.mp4 |
4.9 MB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/050 Add a flash message when requiring login.mp4 |
4.4 MB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/051 Display the flash messages to the user.mp4 |
5.5 MB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/052 Add flash messages when logging in.mp4 |
3.1 MB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/053 Add a flash message when logging out.mp4 |
3.5 MB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/054 Add a CSS style sheet and style the flash messages.mp4 |
3 MB |
| [FreeTutorials.Us] php-mvc-login/07 Flash messages display status messages to users/055 Add flash message types and give them different styles.mp4 |
8.7 MB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/056 How to remember the login after closing the browser.mp4 |
7.7 MB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/057 Generate unique random tokens and secure hashes.mp4 |
6.8 MB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/058 Add a class to generate and create hashes of random tokens.mp4 |
6.7 MB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/059 Create a database table to store remembered logins.mp4 |
4.5 MB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/060 Add a remember me checkbox to the login form.mp4 |
6.3 MB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/061 Remember the login in the database.mp4 |
7.1 MB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/062 Cookies in PHP the basics.mp4 |
9 MB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/063 Remember the login in a cookie.mp4 |
4.3 MB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/064 Log in automatically using the token in the cookie.mp4 |
8.4 MB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/065 Prevent automatic login if the remember token has expired in the database.mp4 |
5.3 MB |
| [FreeTutorials.Us] php-mvc-login/08 Remember me give users the option of remembering the login/066 Forget the remembered login when logging out.mp4 |
8.5 MB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/067 Allow users to securely reset their passwords when they forget them.mp4 |
4.4 MB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/068 Get access to an email service.mp4 |
7 MB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/069 Add a class to send emails.mp4 |
6.3 MB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/070 Create and display the forgotten password page.mp4 |
2.5 MB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/071 Process the forgotten password form in the controller.mp4 |
4.4 MB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/072 Add password reset fields to the user table in the database.mp4 |
3.1 MB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/073 Save a new password reset token and expiry with the user record.mp4 |
4.4 MB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/074 Send the password reset email to the user.mp4 |
6.1 MB |
| [FreeTutorials.Us] php-mvc-login/09 Password reset part 1 securely request reset of a forgotten password/075 Get the email content from a view template.mp4 |
6.8 MB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/076 Add an action to process the link and get the token from the URL.mp4 |
4 MB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/077 Get the user based on the token and check the expiry.mp4 |
7.8 MB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/078 Create and display the password reset form.mp4 |
5.5 MB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/079 Extract repeated JavaScript code out into a separate file.mp4 |
3.6 MB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/080 Process the password reset form in the controller.mp4 |
5 MB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/081 Remove duplicated code and add an expired token view.mp4 |
6.7 MB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/082 Validate the password reset form on the server.mp4 |
12.5 MB |
| [FreeTutorials.Us] php-mvc-login/10 Password reset part 2 securely reset a forgotten password/083 Reset the users password and clear the token and expiry.mp4 |
7.7 MB |
| [FreeTutorials.Us] php-mvc-login/11 Account activation confirm the users email address before allowing login/084 Account activation confirm the users email address.mp4 |
4.4 MB |
| [FreeTutorials.Us] php-mvc-login/11 Account activation confirm the users email address before allowing login/085 Add account activation fields to the user table in the database.mp4 |
2.9 MB |
| [FreeTutorials.Us] php-mvc-login/11 Account activation confirm the users email address before allowing login/086 Generate a unique activation token upon signup.mp4 |
3.8 MB |
| [FreeTutorials.Us] php-mvc-login/11 Account activation confirm the users email address before allowing login/087 Send the account activation email to the user.mp4 |
7.1 MB |
| [FreeTutorials.Us] php-mvc-login/11 Account activation confirm the users email address before allowing login/088 Restrict login if account not activated.mp4 |
3.8 MB |
| [FreeTutorials.Us] php-mvc-login/11 Account activation confirm the users email address before allowing login/089 Process the account activation link and activate the account.mp4 |
10.2 MB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/090 User profile let the user update their own details.mp4 |
4.9 MB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/091 Get the current logged-in user and display their profile data.mp4 |
6.2 MB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/092 Create and display the edit profile form.mp4 |
6.3 MB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/093 Validate the email address is unique allowing for the existing user record.mp4 |
7.4 MB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/094 Make changing the password optional but still validate it if supplied.mp4 |
5.5 MB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/095 Validate and save the profile data on the server.mp4 |
11.9 MB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/096 Clean up duplicated code in the profile controller.mp4 |
8.4 MB |
| [FreeTutorials.Us] php-mvc-login/12 User profile let users update their own profile data/097 Add site navigation with a link to the profile page.mp4 |
4.6 MB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/098 Use a CSS UI framework to add styling and layout.mp4 |
4 MB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/099 Include the Bootstrap framework.mp4 |
4.1 MB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/100 Add a container element and style the general layout.mp4 |
2.8 MB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/101 Add styles to forms and input controls.mp4 |
5.7 MB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/102 Add styles to buttons.mp4 |
3.1 MB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/103 Turn the navigation links into a navbar component.mp4 |
3.7 MB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/104 Replace the flash message styles.mp4 |
2.2 MB |
| [FreeTutorials.Us] php-mvc-login/13 Add styling use a CSS UI framework/105 Add styles when showing the users profile data.mp4 |
1.6 MB |
| [FreeTutorials.Us] php-mvc-login/14 Conclusion/106 Conclusion.mp4 |
2.3 MB |
| [FreeTutorials.Us] php-mvc-login/[FreeTutorials.Us].txt |
75 B |
| [FreeTutorials.Us] php-mvc-login/Freetutorials.Us.url |
119 B |