diff --git a/README.md b/README.md index bfa4756..c79fb02 100644 --- a/README.md +++ b/README.md @@ -8,19 +8,21 @@ Our Project Team consists of -* Backend Developer - @Lord-of-Chicken -* Backend Developer - @gonzalovsilva -* Frontend Developer - @robbertklockaerts -* Project Manager - @Yuliya-beCode +* Backend Developer - [@Lord-of-Chicken](https://github.com/Lord-of-Chicken) +* Backend Developer -[@gonzalovsilva](https://github.com/gonzalovsilva) +* Frontend Developer - [@robbertklockaerts](https://github.com/robbertklockaerts) +* Project Manager - [@Yuliya-beCode](https://github.com/Yuliya-beCode) Tasks allocation -| Heading 1 | Heading 2 | Heading 3 | -|-----------|:-----------:|-----------:| -| Cell A1 | Cell A2 | Cell A3 | -| Cell B1 | Cell B2 | Cell B3 | +| Gonçalo Silva| Gael Layeux | Robbert Klockaerts | Yuliya Bochkovskaya| +|:-----------:|:-----------:|:-----------:| :-----------:| +| right to comment on the content | a session system: registration, connection / disconnection. | right to comment on the content | General administration of the project/Figma style | +| Include a search bar and sort by filters| php footer/header include | admin dashboard | php insert video into iframe | +| page or section that displays the top movies with the movie db API| Back office for user and comment management (CRUD) | login form css | footer/header templates| +| General administration of the project drafting search flow chart| General administration of the project | General administration of the project| register form css| -If you have any questions in regards to our project, please do not hesitate to contact us directly on GitHub +If you have any questions in regards to our project, please do not hesitate to contact us directly on GitHub. Our contact details are mentioned above. # What @@ -31,13 +33,14 @@ movies. * We well spotted the similarities between these platforms (navbar, header, search tool, different categories of videos…) -Please find here below the UX prototype of our website +Please find here below the UX prototype of our website at the first stage of its creation [UX-Prototype of our website ](https://www.figma.com/proto/LZLTLgveLvyu8aBJbc3u1G/The-Theater?node-id=66%3A0&scaling=scale-down&page-id=0%3A1)  + # How - A session system: registration, connection / disconnection. @@ -55,7 +58,6 @@ Please find here below the UX prototype of our website # When - # Evaluation criterias -> self check - [x] We have realized all must-have features. diff --git a/docker_env/application/source/database/GetFlix .sql b/docker_env/application/source/database/GetFlix .sql deleted file mode 100644 index 7e0731c..0000000 --- a/docker_env/application/source/database/GetFlix .sql +++ /dev/null @@ -1,107 +0,0 @@ --- phpMyAdmin SQL Dump --- version 4.8.1 --- https://www.phpmyadmin.net/ --- --- Host: database:3306 --- Gegenereerd op: 08 apr 2021 om 06:27 --- Serverversie: 10.4.2-MariaDB-1:10.4.2+maria~bionic --- PHP-versie: 7.2.5 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Database: `GetFlix` --- - --- -------------------------------------------------------- - --- --- Tabelstructuur voor tabel `comments` --- - -CREATE TABLE `comments` ( - `id` int(11) NOT NULL, - `uid` varchar(128) CHARACTER SET latin1 DEFAULT NULL, - `date` datetime DEFAULT current_timestamp(), - `message` text CHARACTER SET latin1 NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Gegevens worden geëxporteerd voor tabel `comments` --- - -INSERT INTO `comments` (`id`, `uid`, `date`, `message`) VALUES -(16, 'anon', '2021-04-07 00:00:00', 'edited comment'), -(63, NULL, '2021-04-08 05:52:44', 'test'); - --- -------------------------------------------------------- - --- --- Tabelstructuur voor tabel `user` --- - -CREATE TABLE `user` ( - `id` int(11) NOT NULL, - `firstname` varchar(15) NOT NULL, - `lastname` varchar(100) NOT NULL, - `username` varchar(100) NOT NULL, - `email` varchar(100) NOT NULL, - `password` text NOT NULL, - `role` enum('guest','admin','user','') NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Gegevens worden geëxporteerd voor tabel `user` --- - -INSERT INTO `user` (`id`, `firstname`, `lastname`, `username`, `email`, `password`, `role`) VALUES -(7, 'Layeux', 'Gael', 'lordofchicken', 'gael.layeux@poulet.org', '7110eda4d09e062aa5e4a390b0a572ac0d2c0220', 'guest'), -(16, 'Rob', 'Klockaerts', 'rob', 'rob.klockaerts@hotmail.com', 'dc724af18fbdd4e59189f5fe768a5f8311527050', 'admin'), -(18, 'john', 'doe', 'john', 'john.doe@mail.com', 'dc724af18fbdd4e59189f5fe768a5f8311527050', 'guest'), -(20, 'jane', 'doe', 'jane', 'jane.doe@mail.com', 'dc724af18fbdd4e59189f5fe768a5f8311527050', 'guest'); - --- --- Indexen voor geëxporteerde tabellen --- - --- --- Indexen voor tabel `comments` --- -ALTER TABLE `comments` - ADD PRIMARY KEY (`id`); - --- --- Indexen voor tabel `user` --- -ALTER TABLE `user` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT voor geëxporteerde tabellen --- - --- --- AUTO_INCREMENT voor een tabel `comments` --- -ALTER TABLE `comments` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64; - --- --- AUTO_INCREMENT voor een tabel `user` --- -ALTER TABLE `user` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -COMMIT; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/docker_env/application/source/footer.css b/docker_env/application/source/footer.css new file mode 100644 index 0000000..8445fb6 --- /dev/null +++ b/docker_env/application/source/footer.css @@ -0,0 +1,6 @@ +.navbar-brand +{ + position: relative; + width: 50px; + left: 15px; +} \ No newline at end of file diff --git a/docker_env/application/source/footer.html b/docker_env/application/source/footer.html new file mode 100644 index 0000000..c3855e5 --- /dev/null +++ b/docker_env/application/source/footer.html @@ -0,0 +1,70 @@ + + + +
+ + + + + + + + + + + +