├── .gitignore ├── LICENSE ├── README.md ├── assets ├── SSI.jpg ├── banner-1544x500.png ├── banner-772x250.png ├── banner.psd ├── banner2.psd ├── icon2.psd └── screenshot-1.png ├── includes ├── browser.php ├── email.php └── viewer.php ├── readme.txt ├── send-system-info.php ├── ui ├── send-system-info.css └── send-system-info.js └── views ├── email-form.php ├── output.php ├── send-as-text-page.php └── send-system-info.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/README.md -------------------------------------------------------------------------------- /assets/SSI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/assets/SSI.jpg -------------------------------------------------------------------------------- /assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/assets/banner-1544x500.png -------------------------------------------------------------------------------- /assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/assets/banner-772x250.png -------------------------------------------------------------------------------- /assets/banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/assets/banner.psd -------------------------------------------------------------------------------- /assets/banner2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/assets/banner2.psd -------------------------------------------------------------------------------- /assets/icon2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/assets/icon2.psd -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /includes/browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/includes/browser.php -------------------------------------------------------------------------------- /includes/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/includes/email.php -------------------------------------------------------------------------------- /includes/viewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/includes/viewer.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/readme.txt -------------------------------------------------------------------------------- /send-system-info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/send-system-info.php -------------------------------------------------------------------------------- /ui/send-system-info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/ui/send-system-info.css -------------------------------------------------------------------------------- /ui/send-system-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/ui/send-system-info.js -------------------------------------------------------------------------------- /views/email-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/views/email-form.php -------------------------------------------------------------------------------- /views/output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/views/output.php -------------------------------------------------------------------------------- /views/send-as-text-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/views/send-as-text-page.php -------------------------------------------------------------------------------- /views/send-system-info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathetos/send-system-info/HEAD/views/send-system-info.php --------------------------------------------------------------------------------