├── .github
├── FUNDING.yml
├── codeql
│ └── codeql-config.yml
├── workflows
│ ├── lint.yml
│ ├── docs.yml
│ ├── bundlewatch.yml
│ ├── codeql.yml
│ ├── release.yml
│ └── node-sass.yml
├── ISSUE_TEMPLATE
│ ├── feature-request-for-adminlte-v4-x.md
│ └── bug-report-for-adminlte-v3.1-x.md
├── dependabot.yml
└── CONTRIBUTING.md
├── src
├── html
│ ├── env.d.ts
│ ├── .tsconfig.json
│ ├── public
│ │ └── assets
│ │ │ └── img
│ │ │ ├── avatar.png
│ │ │ ├── avatar2.png
│ │ │ ├── avatar3.png
│ │ │ ├── avatar4.png
│ │ │ ├── avatar5.png
│ │ │ ├── icons.png
│ │ │ ├── photo1.png
│ │ │ ├── photo2.png
│ │ │ ├── photo3.jpg
│ │ │ ├── photo4.jpg
│ │ │ ├── prod-1.jpg
│ │ │ ├── prod-2.jpg
│ │ │ ├── prod-3.jpg
│ │ │ ├── prod-4.jpg
│ │ │ ├── prod-5.jpg
│ │ │ ├── boxed-bg.jpg
│ │ │ ├── boxed-bg.png
│ │ │ ├── AdminLTELogo.png
│ │ │ ├── credit
│ │ │ ├── visa.png
│ │ │ ├── cirrus.png
│ │ │ ├── paypal.png
│ │ │ ├── paypal2.png
│ │ │ ├── mastercard.png
│ │ │ └── american-express.png
│ │ │ ├── user1-128x128.jpg
│ │ │ ├── user2-160x160.jpg
│ │ │ ├── user3-128x128.jpg
│ │ │ ├── user4-128x128.jpg
│ │ │ ├── user5-128x128.jpg
│ │ │ ├── user6-128x128.jpg
│ │ │ ├── user7-128x128.jpg
│ │ │ ├── user8-128x128.jpg
│ │ │ ├── AdminLTEFullLogo.png
│ │ │ └── default-150x150.png
│ ├── .prettierrc.js
│ ├── components
│ │ ├── javascript
│ │ │ ├── pushmenu.mdx
│ │ │ └── treeview.mdx
│ │ ├── dashboard
│ │ │ └── _footer.astro
│ │ ├── docs
│ │ │ ├── license.mdx
│ │ │ ├── faq.mdx
│ │ │ ├── browser-support.mdx
│ │ │ ├── introduction.mdx
│ │ │ ├── how-to-contribute.mdx
│ │ │ └── components
│ │ │ │ └── main-sidebar.mdx
│ │ ├── _scripts.astro
│ │ └── _head.astro
│ ├── .eslintrc.json
│ └── pages
│ │ ├── docs
│ │ ├── faq.astro
│ │ ├── license.astro
│ │ ├── introduction.astro
│ │ ├── javascript
│ │ │ ├── pushmenu.astro
│ │ │ └── treeview.astro
│ │ ├── browser-support.astro
│ │ ├── how-to-contribute.astro
│ │ ├── components
│ │ │ └── main-sidebar.astro
│ │ └── layout.astro
│ │ ├── examples
│ │ ├── lockscreen.astro
│ │ ├── login.astro
│ │ ├── register.astro
│ │ ├── login-v2.astro
│ │ └── register-v2.astro
│ │ ├── UI
│ │ └── icons.astro
│ │ └── layout
│ │ ├── fixed-footer.astro
│ │ ├── fixed-header.astro
│ │ ├── unfixed-sidebar.astro
│ │ ├── fixed-sidebar.astro
│ │ ├── sidebar-mini.astro
│ │ ├── layout-rtl.astro
│ │ ├── fixed-complete.astro
│ │ ├── collapsed-sidebar.astro
│ │ └── layout-custom-area.astro
├── assets
│ └── img
│ │ ├── avatar.png
│ │ ├── icons.png
│ │ ├── photo1.png
│ │ ├── photo2.png
│ │ ├── photo3.jpg
│ │ ├── photo4.jpg
│ │ ├── prod-1.jpg
│ │ ├── prod-2.jpg
│ │ ├── prod-3.jpg
│ │ ├── prod-4.jpg
│ │ ├── prod-5.jpg
│ │ ├── avatar2.png
│ │ ├── avatar3.png
│ │ ├── avatar4.png
│ │ ├── avatar5.png
│ │ ├── boxed-bg.jpg
│ │ ├── boxed-bg.png
│ │ ├── credit
│ │ ├── visa.png
│ │ ├── cirrus.png
│ │ ├── paypal.png
│ │ ├── paypal2.png
│ │ ├── mastercard.png
│ │ └── american-express.png
│ │ ├── AdminLTELogo.png
│ │ ├── user1-128x128.jpg
│ │ ├── user2-160x160.jpg
│ │ ├── user3-128x128.jpg
│ │ ├── user4-128x128.jpg
│ │ ├── user5-128x128.jpg
│ │ ├── user6-128x128.jpg
│ │ ├── user7-128x128.jpg
│ │ ├── user8-128x128.jpg
│ │ ├── AdminLTEFullLogo.png
│ │ └── default-150x150.png
├── scss
│ ├── _app-content.scss
│ ├── _docs.scss
│ ├── parts
│ │ ├── _miscellaneous.scss
│ │ ├── _pages.scss
│ │ ├── _components.scss
│ │ ├── _extra-components.scss
│ │ └── _core.scss
│ ├── _mixins.scss
│ ├── _root.scss
│ ├── _miscellaneous.scss
│ ├── _app-footer.scss
│ ├── _app-wrapper.scss
│ ├── _app-header.scss
│ ├── mixins
│ │ ├── _scrollbar.scss
│ │ └── _animations.scss
│ ├── _toasts.scss
│ ├── _variables-dark.scss
│ ├── _progress-bars.scss
│ ├── _callouts.scss
│ ├── _compact-mode.scss
│ ├── _app-main.scss
│ ├── _table.scss
│ ├── pages
│ │ ├── _lockscreen.scss
│ │ └── _login_and_register.scss
│ ├── adminlte.scss
│ ├── _small-box.scss
│ ├── _info-box.scss
│ ├── _timeline.scss
│ └── _dropdown.scss
├── config
│ ├── assets.config.mjs
│ ├── postcss.config.mjs
│ ├── rollup.config.js
│ └── astro.config.mjs
├── utils
│ └── index.js
└── ts
│ ├── layout.ts
│ ├── adminlte.ts
│ ├── direct-chat.ts
│ ├── fullscreen.ts
│ └── util
│ └── index.ts
├── dist
└── assets
│ └── img
│ ├── icons.png
│ ├── avatar.png
│ ├── avatar2.png
│ ├── avatar3.png
│ ├── avatar4.png
│ ├── avatar5.png
│ ├── boxed-bg.jpg
│ ├── boxed-bg.png
│ ├── photo1.png
│ ├── photo2.png
│ ├── photo3.jpg
│ ├── photo4.jpg
│ ├── prod-1.jpg
│ ├── prod-2.jpg
│ ├── prod-3.jpg
│ ├── prod-4.jpg
│ ├── prod-5.jpg
│ ├── AdminLTELogo.png
│ ├── credit
│ ├── cirrus.png
│ ├── paypal.png
│ ├── visa.png
│ ├── paypal2.png
│ ├── mastercard.png
│ └── american-express.png
│ ├── user1-128x128.jpg
│ ├── user2-160x160.jpg
│ ├── user3-128x128.jpg
│ ├── user4-128x128.jpg
│ ├── user5-128x128.jpg
│ ├── user6-128x128.jpg
│ ├── user7-128x128.jpg
│ ├── user8-128x128.jpg
│ ├── default-150x150.png
│ └── AdminLTEFullLogo.png
├── .prettierrc
├── .gitpod.yml
├── .stylelintignore
├── .gitattributes
├── .editorconfig
├── index.html
├── .browserslistrc
├── .lgtm.yml
├── composer.json
├── .gitignore
├── .bundlewatch.config.json
├── .npmignore
├── tsconfig.json
├── LICENSE
├── .stylelintrc.json
├── eslint.config.js
├── .eslintrc.json
├── CODE_OF_CONDUCT.md
└── SECURITY.md
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: danny007in
2 | custom: ["https://www.paypal.me/daniel007in"]
--------------------------------------------------------------------------------
/src/html/env.d.ts:
--------------------------------------------------------------------------------
1 | ///
You can use any font library you like with AdminLTE 4.
67 | Recommendations 68 |Sign in to start your session
27 | 28 | 70 | 71 | 80 | 81 | 82 |83 | I forgot my password 84 |
85 |86 | 87 | Register a new membership 88 | 89 |
90 |Register a new membership
27 | 28 | 76 | 77 | 86 | 87 | 88 |89 | 90 | I already have a membership 91 | 92 |
93 |Sign in to start your session
30 | 31 | 80 | 81 | 90 | 91 | 92 |93 | I forgot my password 94 |
95 |96 | 97 | Register a new membership 98 | 99 |
100 |Register a new membership
31 | 32 | 90 | 91 | 100 | 101 | 102 |103 | 104 | I already have a membership 105 | 106 |
107 |58 | The 59 | starter page 60 | is a good place to start building your app if you’d like to 61 | start from scratch. 62 |
63 |The layout consists of five major parts:
66 |.app-wrapper . A div that wraps the whole site.
69 | .app-header . Contains the logo and navbar.
72 | .app-sidebar . Contains the sidebar user
75 | panel and menu.
76 | .app-main . Contains the page header and content.
79 | .app-footer . Contains the footer.
82 |
87 | AdminLTE v4 provides a set of options to apply to your main
88 | layout. Each one of these classes can be added to the
89 | body tag to get the desired goal.
90 |
.layout-fixed to get a
94 | fixed sidebar.
95 | .sidebar-expand-* .sidebar-mini
99 | to have a collapsed sidebar upon loading.
100 | .sidebar-expand-* .sidebar-mini .sidebar-collapse to
104 | have a collapsed sidebar upon loading.
105 |