├── README.md ├── global.css ├── index.css ├── img └── logo.png ├── partials ├── bootstrap_header.php └── bootstrap_body.php ├── index.php ├── login.css ├── login.php └── LICENSE.md /README.md: -------------------------------------------------------------------------------- 1 | dnsmasq_gui 2 | -------------------------------------------------------------------------------- /global.css: -------------------------------------------------------------------------------- 1 | /* Global CSS file */ -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- 1 | .container { 2 | margin-top: 5%; 3 | } -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SloCompTech/dnsmasq-gui/HEAD/img/logo.png -------------------------------------------------------------------------------- /partials/bootstrap_header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /partials/bootstrap_body.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 11 |