diff options
| author | Bobby <[email protected]> | 2023-05-03 21:30:27 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-05-03 21:30:27 -0400 |
| commit | 34ba2b1c746aaf78563573c797719a5a366af7f2 (patch) | |
| tree | 0a34b68e49d1642dbbec291ea09295dd9852b53e /static | |
| parent | 2354324554dd448d4cf8fe5c8a2456648cf5859d (diff) | |
| download | thatcomputerscientist-34ba2b1c746aaf78563573c797719a5a366af7f2.tar.xz thatcomputerscientist-34ba2b1c746aaf78563573c797719a5a366af7f2.zip | |
Migrated Login to a cleaner experience
Diffstat (limited to 'static')
| -rw-r--r-- | static/css/login-area.css | 46 | ||||
| -rw-r--r-- | static/images/backgrounds/login-messages/ENVERR.png | bin | 0 -> 356076 bytes | |||
| -rw-r--r-- | static/images/backgrounds/login-messages/IUOPERR.png | bin | 0 -> 353459 bytes | |||
| -rw-r--r-- | static/images/backgrounds/login-messages/RFEERR.png | bin | 0 -> 358125 bytes | |||
| -rw-r--r-- | static/images/backgrounds/login-messages/VESENDERR.png | bin | 0 -> 355089 bytes | |||
| -rw-r--r-- | static/images/backgrounds/login-messages/VESENT.png | bin | 0 -> 351547 bytes | |||
| -rw-r--r-- | static/images/backgrounds/login-messages/VESUCCESS.png | bin | 0 -> 340649 bytes |
7 files changed, 46 insertions, 0 deletions
diff --git a/static/css/login-area.css b/static/css/login-area.css index 15351174..5f06ba54 100644 --- a/static/css/login-area.css +++ b/static/css/login-area.css @@ -27,6 +27,14 @@ border-radius: 4px; } +/* Reset auto fill */ +#login-form input:-webkit-autofill, +#login-form input:-webkit-autofill:hover, +#login-form input:-webkit-autofill:focus, +#login-form input:-webkit-autofill:active{ + transition: background-color 1s ease-in 2000s; +} + #login-form input::placeholder { color: #787dab; } @@ -53,3 +61,41 @@ right: 40px; background: transparent; } + +#login-error { + position: relative; +} + +#login-error > .RFEERR { + background: url('../images/backgrounds/login-messages/RFEERR.png') no-repeat; +} + +#login-error > .IUOPERR { + background: url('../images/backgrounds/login-messages/IUOPERR.png') no-repeat; +} + +#login-error > .ENVERR { + background: url('../images/backgrounds/login-messages/ENVERR.png') no-repeat; +} + +#login-error > .VESENDERR { + background: url('../images/backgrounds/login-messages/VESENDERR.png') no-repeat; +} + +#login-error > .VESENT { + background: url('../images/backgrounds/login-messages/VESENT.png') no-repeat; +} + +#login-error > .VESUCCESS { + background: url('../images/backgrounds/login-messages/VESUCCESS.png') no-repeat; +} + +#login-error > .messageBox { + position: absolute; + background-size: 250px 166px; + width: 250px; + height: 166px; + top: -100px; + left: -140px; + z-index: 2; +} diff --git a/static/images/backgrounds/login-messages/ENVERR.png b/static/images/backgrounds/login-messages/ENVERR.png Binary files differnew file mode 100644 index 00000000..7b22a579 --- /dev/null +++ b/static/images/backgrounds/login-messages/ENVERR.png diff --git a/static/images/backgrounds/login-messages/IUOPERR.png b/static/images/backgrounds/login-messages/IUOPERR.png Binary files differnew file mode 100644 index 00000000..5aed36f1 --- /dev/null +++ b/static/images/backgrounds/login-messages/IUOPERR.png diff --git a/static/images/backgrounds/login-messages/RFEERR.png b/static/images/backgrounds/login-messages/RFEERR.png Binary files differnew file mode 100644 index 00000000..1b676138 --- /dev/null +++ b/static/images/backgrounds/login-messages/RFEERR.png diff --git a/static/images/backgrounds/login-messages/VESENDERR.png b/static/images/backgrounds/login-messages/VESENDERR.png Binary files differnew file mode 100644 index 00000000..d071f509 --- /dev/null +++ b/static/images/backgrounds/login-messages/VESENDERR.png diff --git a/static/images/backgrounds/login-messages/VESENT.png b/static/images/backgrounds/login-messages/VESENT.png Binary files differnew file mode 100644 index 00000000..d29635dd --- /dev/null +++ b/static/images/backgrounds/login-messages/VESENT.png diff --git a/static/images/backgrounds/login-messages/VESUCCESS.png b/static/images/backgrounds/login-messages/VESUCCESS.png Binary files differnew file mode 100644 index 00000000..a2b3d364 --- /dev/null +++ b/static/images/backgrounds/login-messages/VESUCCESS.png |
