├── .DS_Store ├── .github └── workflows │ └── greetings.yml ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── combined website ├── Readme.md ├── combined.html └── style.css ├── ftpdownload ├── download.php ├── index.html └── style.css └── ftpupload ├── index.html ├── style.css └── upload.php /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/README.md -------------------------------------------------------------------------------- /combined website/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/combined website/Readme.md -------------------------------------------------------------------------------- /combined website/combined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/combined website/combined.html -------------------------------------------------------------------------------- /combined website/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/combined website/style.css -------------------------------------------------------------------------------- /ftpdownload/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/ftpdownload/download.php -------------------------------------------------------------------------------- /ftpdownload/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/ftpdownload/index.html -------------------------------------------------------------------------------- /ftpdownload/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/ftpdownload/style.css -------------------------------------------------------------------------------- /ftpupload/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/ftpupload/index.html -------------------------------------------------------------------------------- /ftpupload/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/ftpupload/style.css -------------------------------------------------------------------------------- /ftpupload/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartikey-codes/FTPdemo/HEAD/ftpupload/upload.php --------------------------------------------------------------------------------