├── .gitignore ├── src ├── ufront │ ├── ufadmin │ │ ├── view │ │ │ ├── welcome.html │ │ │ ├── layout.html │ │ │ ├── container.html │ │ │ └── login.html │ │ ├── UFAdminPermissions.hx │ │ ├── modules │ │ │ └── DBAdminModule.hx │ │ ├── UFAdminModule.hx │ │ └── controller │ │ │ └── UFAdminHomeController.hx │ └── spadm │ │ └── DBAdmin.hx └── spadm │ ├── Custom.hx │ ├── Id.hx │ ├── AdminStyle.hx │ ├── Serialized.hx │ ├── TableInfos.hx │ └── Admin.hx ├── README.md ├── bundle.sh ├── haxelib.json └── LICENSE.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /src/ufront/ufadmin/view/welcome.html: -------------------------------------------------------------------------------- 1 |
This is the ufront admin interface.
4 |To access the Ufront Admin area you must be logged in.
6 |