Folder Structure

Use below velzon structure for modify and better understand the Velzon.

1. Velzon Flask Folders
Folder Path Uses

.flaskenv

Admin/ Flask environment file here.

main.py

Admin/ Flask main file here.

src

Admin/Velzon/ All src files here.

db.sqlite

Admin/Velzon/ All Database related migrations.

__init__.py

Admin/Velzon/ All apps and database related code here.

apps

Admin/Velzon/ Apps file here.

components

Admin/Velzon/ Components file here.

dashboards

Admin/Velzon/ Dashboards file here.

layouts

Admin/Velzon/ Layouts file here.

pages

Admin/Velzon/ Pages file here.

package.json

Admin/Velzon/ package.json file here.

gulpfile.js

Admin/Velzon/ gulp related code. if you don't have knowledge about this then don't modify it.
2. Velzon Flask partials Files
File Path Uses

base.html

templates/partials/base All base structure files here.

footer..html

templates/partials/footer Footer related code. you can modify as per your requirements.

customizer.html

templates/partials/customizer Customizer related code.

sidebar.html

templates/partials/sidebar Sidebar menus related code, you can add new menu here.

topbar.html

templates/partials/topbar Topbar related code here, you can easily customize topbar from here.

css

templates/partials/base Common css placed here,extra css includes in html files.

javascripts

templates/partials/base Common javascript includes here, extra javascript includes in html files.
3. Velzon Flask Layouts Files
File Path Uses

layouts-detached.html

templates/layouts/ Detached layout file here.

layouts-horizontal.html

templates/layouts/ Horizontal layout file here.

layouts-two-column.html

templates/layouts/ Two column layout file here.

layouts-vertical-hovered.html

templates/layouts/ Vertical hovered layout file here.
4. Velzon Flask Auth Files
File Path Uses

base_account.html

templates/pages/account/base_account Auth base file here.

login.html

templates/pages/account/ Login view page code, if you need to customize login you can do from this.

signup.html

templates/pages/account/ Registration page view code.