├── app
├── Filters
│ ├── .gitkeep
│ └── AuthGuard.php
├── Helpers
│ └── .gitkeep
├── Language
│ ├── .gitkeep
│ └── en
│ │ └── Validation.php
├── Libraries
│ └── .gitkeep
├── Models
│ ├── .gitkeep
│ └── UserModel.php
├── ThirdParty
│ └── .gitkeep
├── Database
│ ├── Seeds
│ │ └── .gitkeep
│ └── Migrations
│ │ └── .gitkeep
├── .htaccess
├── Views
│ ├── errors
│ │ ├── cli
│ │ │ ├── error_404.php
│ │ │ ├── production.php
│ │ │ └── error_exception.php
│ │ └── html
│ │ │ ├── production.php
│ │ │ ├── error_404.php
│ │ │ ├── debug.js
│ │ │ ├── debug.css
│ │ │ └── error_exception.php
│ ├── signin.php
│ └── signup.php
├── index.html
├── Config
│ ├── ForeignCharacters.php
│ ├── CURLRequest.php
│ ├── Images.php
│ ├── Boot
│ │ ├── production.php
│ │ ├── testing.php
│ │ └── development.php
│ ├── Honeypot.php
│ ├── Publisher.php
│ ├── Services.php
│ ├── Feature.php
│ ├── Validation.php
│ ├── Pager.php
│ ├── Events.php
│ ├── Kint.php
│ ├── Modules.php
│ ├── Migrations.php
│ ├── View.php
│ ├── Filters.php
│ ├── Generators.php
│ ├── Exceptions.php
│ ├── Encryption.php
│ ├── Routes.php
│ ├── Database.php
│ ├── DocTypes.php
│ ├── Format.php
│ ├── Autoload.php
│ ├── Paths.php
│ ├── Email.php
│ ├── Toolbar.php
│ ├── Security.php
│ ├── Cookie.php
│ ├── Constants.php
│ ├── ContentSecurityPolicy.php
│ ├── Logger.php
│ ├── Cache.php
│ ├── UserAgents.php
│ ├── App.php
│ └── Mimes.php
├── Controllers
│ ├── Home.php
│ ├── ProfileController.php
│ ├── SignupController.php
│ ├── SigninController.php
│ └── BaseController.php
└── Common.php
├── public
├── robots.txt
├── favicon.ico
├── .htaccess
└── index.php
├── writable
├── .htaccess
├── cache
│ └── index.html
├── logs
│ └── index.html
├── session
│ └── index.html
└── uploads
│ └── index.html
├── tests
├── _support
│ ├── Libraries
│ │ └── ConfigReader.php
│ ├── Models
│ │ └── ExampleModel.php
│ └── Database
│ │ ├── Migrations
│ │ └── 2020-02-22-222222_example_migration.php
│ │ └── Seeds
│ │ └── ExampleSeeder.php
├── session
│ └── ExampleSessionTest.php
├── database
│ └── ExampleDatabaseTest.php
├── unit
│ └── HealthTest.php
└── README.md
├── README.md
├── composer.json
├── LICENSE
├── .gitignore
├── phpunit.xml.dist
├── preload.php
├── spark
└── env
/app/Filters/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/Helpers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/Language/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/Libraries/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/Models/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/ThirdParty/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/Database/Seeds/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/Database/Migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SinghDigamber/codeigniter-authentication-example/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/app/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/uploads/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/Config/ForeignCharacters.php: -------------------------------------------------------------------------------- 1 | get('name'); 13 | } 14 | } -------------------------------------------------------------------------------- /app/Models/UserModel.php: -------------------------------------------------------------------------------- 1 | set('logged_in', 123); 16 | $this->assertSame(123, $session->get('logged_in')); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/Common.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |We seem to have hit a snag. Please try again later...
20 | 21 |76 | 77 | = nl2br(esc($message)) ?> 78 | 79 | Sorry! Cannot seem to find the page you were looking for. 80 | 81 |
82 |