commit d071c9a3da6092f186e5975f4b77653b97bda186 Author: Arne van Iterson Date: Thu Mar 5 23:06:59 2020 +0100 First commit diff --git a/html/.htaccess b/html/.htaccess new file mode 100644 index 0000000..85ced38 --- /dev/null +++ b/html/.htaccess @@ -0,0 +1,4 @@ +RewriteEngine on +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule ^.*$ /index.php [NC,L,QSA] \ No newline at end of file diff --git a/html/css/index.css b/html/css/index.css new file mode 100644 index 0000000..6eb75b0 --- /dev/null +++ b/html/css/index.css @@ -0,0 +1,56 @@ +body { + margin: 0; + padding: 0; + font-family: Arial, Helvetica, sans-serif; +} + +body nav { + background-color: #1f1f1f; + color: whitesmoke; + position: fixed; + top: 0; + left: 0; + right: 0; + height: 2em; + padding: 1em; +} + +body nav img { + height: 2em; + -webkit-filter: contrast(0) invert(100%) sepia(13%) saturate(49%) hue-rotate(200deg) brightness(180%) contrast(92%); + filter: contrast(0) invert(100%) sepia(13%) saturate(49%) hue-rotate(200deg) brightness(180%) contrast(92%); +} + +body nav a:last-of-type { + position: fixed; + right: 1em; + font-size: 1.5em; + color: whitesmoke !important; + cursor: pointer; +} + +body main { + background-color: whitesmoke; + position: absolute; + top: 4em; + left: 0; +} + +body main div.loginContainer { + position: relative; + margin: 0 auto; + text-align: center; +} + +body footer { + background-color: #1f1f1f; + color: whitesmoke; + position: fixed; + bottom: 0; + left: 0; + right: 0; + text-align: center; + height: 1em; + padding: 0.5em; +} +/*# sourceMappingURL=index.css.map */ \ No newline at end of file diff --git a/html/css/index.css.map b/html/css/index.css.map new file mode 100644 index 0000000..f4bbdc6 --- /dev/null +++ b/html/css/index.css.map @@ -0,0 +1,9 @@ +{ + "version": 3, + "mappings": "AAAA,AAAA,IAAI,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,WAAW,EAAE,4BAA4B;CA4C5C;;AA/CD,AAII,IAJA,CAIA,GAAG,CAAC;EACA,gBAAgB,EAAE,OAAO;EACzB,KAAK,EAAE,UAAU;EACjB,QAAQ,EAAE,KAAK;EACf,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,CAAC;EACR,MAAM,EAAE,GAAG;EACX,OAAO,EAAE,GAAG;CAYf;;AAxBL,AAaQ,IAbJ,CAIA,GAAG,CASC,GAAG,CAAC;EACA,MAAM,EAAE,GAAG;EACX,MAAM,EAAE,WAAW,CAAC,YAAY,CAAC,UAAU,CAAC,aAAa,CAAC,kBAAkB,CAAC,gBAAgB,CAAC,aAAa;CAC9G;;AAhBT,AAiBQ,IAjBJ,CAIA,GAAG,CAaC,CAAC,AAAA,aAAa,CAAC;EACX,QAAQ,EAAE,KAAK;EACf,KAAK,EAAE,GAAG;EACV,SAAS,EAAE,KAAK;EAChB,KAAK,EAAE,UAAU,CAAA,UAAU;EAC3B,MAAM,EAAE,OAAO;CAClB;;AAvBT,AAyBI,IAzBA,CAyBA,IAAI,CAAC;EACD,gBAAgB,EAAE,UAAU;EAC5B,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,CAAC;CAMV;;AAnCL,AA8BQ,IA9BJ,CAyBA,IAAI,CAKA,GAAG,AAAA,eAAe,CAAC;EACf,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,MAAM;EACd,UAAU,EAAE,MAAM;CACrB;;AAlCT,AAoCI,IApCA,CAoCA,MAAM,CAAC;EACH,gBAAgB,EAAE,OAAO;EACzB,KAAK,EAAE,UAAU;EACjB,QAAQ,EAAE,KAAK;EACf,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,CAAC;EACR,UAAU,EAAE,MAAM;EAClB,MAAM,EAAE,GAAG;EACX,OAAO,EAAE,KAAK;CACjB", + "sources": [ + "index.scss" + ], + "names": [], + "file": "index.css" +} \ No newline at end of file diff --git a/html/css/index.scss b/html/css/index.scss new file mode 100644 index 0000000..df9316f --- /dev/null +++ b/html/css/index.scss @@ -0,0 +1,48 @@ +body { + margin: 0; + padding: 0; + font-family: Arial, Helvetica, sans-serif; + nav { + background-color: #1f1f1f; + color: whitesmoke; + position: fixed; + top: 0; + left: 0; + right: 0; + height: 2em; + padding: 1em; + img { + height: 2em; + filter: contrast(0) invert(100%) sepia(13%) saturate(49%) hue-rotate(200deg) brightness(180%) contrast(92%); + } + a:last-of-type { + position: fixed; + right: 1em; + font-size: 1.5em; + color: whitesmoke!important; + cursor: pointer; + } + } + main { + background-color: whitesmoke; + position: absolute; + top: 4em; + left: 0; + div.loginContainer { + position: relative; + margin: 0 auto; + text-align: center; + } + } + footer { + background-color: #1f1f1f; + color: whitesmoke; + position: fixed; + bottom: 0; + left: 0; + right: 0; + text-align: center; + height: 1em; + padding: 0.5em; + } +} \ No newline at end of file diff --git a/html/index.php b/html/index.php new file mode 100644 index 0000000..b8c2db4 --- /dev/null +++ b/html/index.php @@ -0,0 +1,10 @@ + + + + Page 1 + Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/templates/index.html.php b/templates/index.html.php new file mode 100644 index 0000000..c0c5742 --- /dev/null +++ b/templates/index.html.php @@ -0,0 +1,13 @@ +
+ + + + + + + + + + + +
DocentLocatieOpmerkingen
KruiswijkBuitenNeem sportkleding mee!
\ No newline at end of file diff --git a/templates/layout.html.php b/templates/layout.html.php new file mode 100644 index 0000000..d5093af --- /dev/null +++ b/templates/layout.html.php @@ -0,0 +1,25 @@ + + + + + + Gymrooster + + + + + +
+ +
+ +
+ + Made by McArn and JoVo +
+ + \ No newline at end of file diff --git a/templates/login.html.php b/templates/login.html.php new file mode 100644 index 0000000..1c809fc --- /dev/null +++ b/templates/login.html.php @@ -0,0 +1,12 @@ + +
+
+

Login

+
+
+
+ + + +
+
\ No newline at end of file