├── .gitignore ├── LICENSE ├── assets ├── demo.gif ├── logo.txt └── styles.css ├── box.json ├── composer.json ├── composer.lock ├── index.php ├── logs └── .gitkeep ├── readme.md ├── src ├── Task.php └── TaskController.php └── views ├── main.xml ├── popups ├── delete.xml └── login.xml ├── surfaces.xml └── welcome.xml /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /logs/debug.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/assets/logo.txt -------------------------------------------------------------------------------- /assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/assets/styles.css -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/box.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/index.php -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/readme.md -------------------------------------------------------------------------------- /src/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/src/Task.php -------------------------------------------------------------------------------- /src/TaskController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/src/TaskController.php -------------------------------------------------------------------------------- /views/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/views/main.xml -------------------------------------------------------------------------------- /views/popups/delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/views/popups/delete.xml -------------------------------------------------------------------------------- /views/popups/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/views/popups/login.xml -------------------------------------------------------------------------------- /views/surfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/views/surfaces.xml -------------------------------------------------------------------------------- /views/welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aharabara/htodo/HEAD/views/welcome.xml --------------------------------------------------------------------------------