https://github.com/dcblogdev/loginregister
Login and Registration system
https://github.com/dcblogdev/loginregister
Last synced: 10 months ago
JSON representation
Login and Registration system
- Host: GitHub
- URL: https://github.com/dcblogdev/loginregister
- Owner: dcblogdev
- License: mit
- Created: 2014-02-01T20:04:44.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2022-06-02T21:18:24.000Z (over 3 years ago)
- Last Synced: 2025-03-29T10:11:20.902Z (11 months ago)
- Language: PHP
- Homepage: https://dcblog.dev/login-and-registration-system-with-php
- Size: 147 KB
- Stars: 312
- Watchers: 46
- Forks: 210
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
Login Register
=============
These files acompany the tutorial: [Login and Registration system with PHP](https://dcblog.dev/login-and-registration-system-with-php)
## send emails locally
For anyone who is struggling with emails locally I highly recommend using https://mailtrap.io this is a great service to catch emails when working locally.
To set it up open classes/phpmailer/mail.php and enter the SMTP details:
Ensure you enter the username and password provided from mailtrap.
```php
public $Host = 'smtp.mailtrap.io';
public $Mailer = 'smtp';
public $SMTPAuth = true;
public $Username = '';
public $Password = '';
//public $SMTPSecure = 'tls';
```