├── backend
├── public
│ ├── favicon.ico
│ ├── robots.txt
│ ├── .htaccess
│ └── index.php
├── resources
│ └── views
│ │ └── .gitkeep
├── database
│ ├── .gitignore
│ ├── seeders
│ │ └── DatabaseSeeder.php
│ ├── migrations
│ │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php
│ │ ├── 2014_10_12_000000_create_users_table.php
│ │ ├── 2019_08_19_000000_create_failed_jobs_table.php
│ │ └── 2019_12_14_000001_create_personal_access_tokens_table.php
│ └── factories
│ │ └── UserFactory.php
├── storage
│ ├── logs
│ │ └── .gitignore
│ ├── app
│ │ ├── public
│ │ │ └── .gitignore
│ │ └── .gitignore
│ └── framework
│ │ ├── sessions
│ │ └── .gitignore
│ │ ├── testing
│ │ └── .gitignore
│ │ ├── views
│ │ └── .gitignore
│ │ ├── cache
│ │ ├── data
│ │ │ └── .gitignore
│ │ └── .gitignore
│ │ └── .gitignore
├── bootstrap
│ ├── cache
│ │ └── .gitignore
│ └── app.php
├── tests
│ ├── TestCase.php
│ ├── Unit
│ │ └── ExampleTest.php
│ ├── Feature
│ │ ├── ExampleTest.php
│ │ └── Auth
│ │ │ ├── RegistrationTest.php
│ │ │ ├── AuthenticationTest.php
│ │ │ ├── PasswordResetTest.php
│ │ │ └── EmailVerificationTest.php
│ └── CreatesApplication.php
├── .gitattributes
├── .gitignore
├── .editorconfig
├── app
│ ├── Http
│ │ ├── Controllers
│ │ │ ├── Controller.php
│ │ │ └── Auth
│ │ │ │ ├── EmailVerificationNotificationController.php
│ │ │ │ ├── AuthenticatedSessionController.php
│ │ │ │ ├── VerifyEmailController.php
│ │ │ │ ├── RegisteredUserController.php
│ │ │ │ ├── PasswordResetLinkController.php
│ │ │ │ └── NewPasswordController.php
│ │ ├── Middleware
│ │ │ ├── EncryptCookies.php
│ │ │ ├── VerifyCsrfToken.php
│ │ │ ├── PreventRequestsDuringMaintenance.php
│ │ │ ├── TrimStrings.php
│ │ │ ├── TrustHosts.php
│ │ │ ├── Authenticate.php
│ │ │ ├── ValidateSignature.php
│ │ │ ├── TrustProxies.php
│ │ │ ├── EnsureEmailIsVerified.php
│ │ │ └── RedirectIfAuthenticated.php
│ │ ├── Requests
│ │ │ └── Auth
│ │ │ │ └── LoginRequest.php
│ │ └── Kernel.php
│ ├── Providers
│ │ ├── BroadcastServiceProvider.php
│ │ ├── AppServiceProvider.php
│ │ ├── AuthServiceProvider.php
│ │ ├── EventServiceProvider.php
│ │ └── RouteServiceProvider.php
│ ├── Console
│ │ └── Kernel.php
│ ├── Exceptions
│ │ └── Handler.php
│ └── Models
│ │ └── User.php
├── routes
│ ├── web.php
│ ├── channels.php
│ ├── api.php
│ ├── console.php
│ └── auth.php
├── README.md
├── config
│ ├── cors.php
│ ├── services.php
│ ├── view.php
│ ├── hashing.php
│ ├── broadcasting.php
│ ├── sanctum.php
│ ├── filesystems.php
│ ├── cache.php
│ ├── queue.php
│ ├── mail.php
│ ├── auth.php
│ ├── logging.php
│ ├── database.php
│ ├── app.php
│ └── session.php
├── phpunit.xml
├── .env.example
├── artisan
└── composer.json
├── frontend
├── .env.example
├── public
│ ├── _redirects
│ └── vite.svg
├── .env.development
├── src
│ ├── vite-env.d.ts
│ ├── assets
│ │ └── index.css
│ ├── pages
│ │ ├── QuickStart.tsx
│ │ ├── Home.tsx
│ │ ├── ForgotPassword.tsx
│ │ ├── Login.tsx
│ │ ├── ResetPassword.tsx
│ │ └── Register.tsx
│ ├── components
│ │ ├── ui
│ │ │ ├── Spinner.tsx
│ │ │ └── Navbar.tsx
│ │ ├── errors
│ │ │ └── Generic.tsx
│ │ ├── layout
│ │ │ ├── AuthLayout.tsx
│ │ │ └── GuestLayout.tsx
│ │ └── ErrorBoundary.tsx
│ ├── hooks
│ │ └── useAuthContext.tsx
│ ├── main.tsx
│ ├── lib
│ │ └── axios.tsx
│ ├── App.tsx
│ └── context
│ │ └── AuthContext.tsx
├── .env.production
├── postcss.config.js
├── tailwind.config.ts
├── vite.config.ts
├── tsconfig.node.json
├── .gitignore
├── .eslintrc.cjs
├── index.html
├── tsconfig.json
├── README.md
└── package.json
├── .gitignore
└── README.md
/backend/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/backend/resources/views/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/backend/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite*
2 |
--------------------------------------------------------------------------------
/backend/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/frontend/.env.example:
--------------------------------------------------------------------------------
1 | VITE_BACKEND_URL_LOCAL=
2 |
--------------------------------------------------------------------------------
/frontend/public/_redirects:
--------------------------------------------------------------------------------
1 | /* /index.html 200
--------------------------------------------------------------------------------
/backend/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/backend/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/backend/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/backend/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/backend/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/backend/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/backend/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/frontend/.env.development:
--------------------------------------------------------------------------------
1 | VITE_BACKEND_URL=http://localhost:8000
2 |
--------------------------------------------------------------------------------
/frontend/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
Please verify your email address.
24 | 32 |99 | Don't have an account?{' '} 100 | 104 | Sign up 105 | 106 |
107 |141 | Already have an account?{' '} 142 | 146 | Sign in 147 | 148 |
149 |