diff --git a/.gitignore b/.gitignore index 64637c5..afa9876 100644 --- a/.gitignore +++ b/.gitignore @@ -129,3 +129,5 @@ dmypy.json .pyre/ font-awesome/ + +config.php diff --git a/404.html b/404.html new file mode 100644 index 0000000..e2066aa --- /dev/null +++ b/404.html @@ -0,0 +1,2 @@ +

404

+

Sorry, that page couldn't be found.

\ No newline at end of file diff --git a/bcid_prototyping/index.html b/bcid_prototyping/index.html index 0baf76d..b99e68a 100644 --- a/bcid_prototyping/index.html +++ b/bcid_prototyping/index.html @@ -10,26 +10,27 @@ -
+ + -- >
-
+ -->

ByeCorps ID

Log into ByeCorps and beyond with a single ID.

+ Sign in Create an account
diff --git a/footer.php b/footer.php new file mode 100644 index 0000000..5ea6a24 --- /dev/null +++ b/footer.php @@ -0,0 +1,3 @@ +
+ © ByeCorps +
\ No newline at end of file diff --git a/bcid_prototyping/header.html b/header.php similarity index 100% rename from bcid_prototyping/header.html rename to header.php diff --git a/index.php b/index.php new file mode 100644 index 0000000..c4ee53f --- /dev/null +++ b/index.php @@ -0,0 +1,58 @@ + + + + + + + + + ByeCorps ID + + + + + + +
+ +
+ + + \ No newline at end of file diff --git a/landing.html b/landing.html new file mode 100644 index 0000000..d6f90fa --- /dev/null +++ b/landing.html @@ -0,0 +1,11 @@ +
+
+
+

ByeCorps ID

+

Log into ByeCorps and beyond with a single ID.

+ + Sign in + Create an account +
+
+
\ No newline at end of file diff --git a/signin.php b/signin.php new file mode 100644 index 0000000..e69de29 diff --git a/bcid_prototyping/styles/colours.css b/styles/colours.css similarity index 89% rename from bcid_prototyping/styles/colours.css rename to styles/colours.css index 1ec43db..2d91167 100644 --- a/bcid_prototyping/styles/colours.css +++ b/styles/colours.css @@ -12,9 +12,11 @@ --fern-green: #65743a; --flax: #efdd8d; --mindaro: #f4fdaf; + + color-scheme: light dark; } -button, .button { +button.primary, .button.primary { color: var(--black-bean); background-color: var(--flax); } @@ -29,7 +31,7 @@ header a { } @media screen and (prefers-color-scheme: dark) { - button, .button { + button.primary, .button.primary { color: var(--flax); background-color: var(--dark-slate-gray); } diff --git a/bcid_prototyping/styles/design.css b/styles/design.css similarity index 78% rename from bcid_prototyping/styles/design.css rename to styles/design.css index 326ccc9..7de58d3 100644 --- a/bcid_prototyping/styles/design.css +++ b/styles/design.css @@ -17,4 +17,14 @@ button, .button { header a { text-decoration: none; -} \ No newline at end of file +} + +/* inputs */ + +input { + all: unset; + padding: 1em; + text-align: start; + + border-radius: 1em; +} diff --git a/bcid_prototyping/styles/global.css b/styles/global.css similarity index 100% rename from bcid_prototyping/styles/global.css rename to styles/global.css index 2dc7eca..59f2674 100644 --- a/bcid_prototyping/styles/global.css +++ b/styles/global.css @@ -1,7 +1,7 @@ -@import url(./colours.css); @import url(./types.css); @import url(./design.css); @import url(./layout.css); +@import url(./colours.css); :root { color-scheme: light dark; diff --git a/bcid_prototyping/styles/layout.css b/styles/layout.css similarity index 100% rename from bcid_prototyping/styles/layout.css rename to styles/layout.css diff --git a/bcid_prototyping/styles/types.css b/styles/types.css similarity index 91% rename from bcid_prototyping/styles/types.css rename to styles/types.css index e267029..6fce88f 100644 --- a/bcid_prototyping/styles/types.css +++ b/styles/types.css @@ -20,4 +20,8 @@ html { .bc-3 { font-weight: 400; -} \ No newline at end of file +} + +.center { + text-align: center; +}