├── LICENSE ├── Partials ├── dashboard.php ├── logout.php └── registration.php ├── README.md ├── actions ├── connect.php ├── login.php ├── register.php └── voting.php ├── index.php └── style.css /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steavo171/Online-Voting-System/HEAD/LICENSE -------------------------------------------------------------------------------- /Partials/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steavo171/Online-Voting-System/HEAD/Partials/dashboard.php -------------------------------------------------------------------------------- /Partials/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steavo171/Online-Voting-System/HEAD/Partials/logout.php -------------------------------------------------------------------------------- /Partials/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steavo171/Online-Voting-System/HEAD/Partials/registration.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steavo171/Online-Voting-System/HEAD/README.md -------------------------------------------------------------------------------- /actions/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steavo171/Online-Voting-System/HEAD/actions/connect.php -------------------------------------------------------------------------------- /actions/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steavo171/Online-Voting-System/HEAD/actions/login.php -------------------------------------------------------------------------------- /actions/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steavo171/Online-Voting-System/HEAD/actions/register.php -------------------------------------------------------------------------------- /actions/voting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steavo171/Online-Voting-System/HEAD/actions/voting.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steavo171/Online-Voting-System/HEAD/index.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steavo171/Online-Voting-System/HEAD/style.css --------------------------------------------------------------------------------