diff --git a/eventyog/settings.py b/eventyog/settings.py index 0f9b688..c56f91e 100644 --- a/eventyog/settings.py +++ b/eventyog/settings.py @@ -86,6 +86,9 @@ load_dotenv() # Load environment variables from a .env file + +DATABASES = {} + if (os.getenv('PROD') != 'True'): DATABASES = { 'default': { diff --git a/modules/authentication/templates/login.html b/modules/authentication/templates/login.html index b6ff35a..1a589d0 100644 --- a/modules/authentication/templates/login.html +++ b/modules/authentication/templates/login.html @@ -30,8 +30,9 @@ diff --git a/modules/authentication/templates/register.html b/modules/authentication/templates/register.html index fcc4b1d..632240c 100644 --- a/modules/authentication/templates/register.html +++ b/modules/authentication/templates/register.html @@ -37,8 +37,9 @@ diff --git a/static/js/index.js b/static/js/index.js deleted file mode 100644 index e69de29..0000000 diff --git a/static/js/main.js b/static/js/main.js new file mode 100644 index 0000000..8c618f9 --- /dev/null +++ b/static/js/main.js @@ -0,0 +1 @@ +console.log("HELLO WORLDSSS"); \ No newline at end of file diff --git a/staticfiles/assets/eventyog-white.png b/staticfiles/assets/eventyog-white.png new file mode 100644 index 0000000..4fd2796 Binary files /dev/null and b/staticfiles/assets/eventyog-white.png differ diff --git a/staticfiles/js/main.js b/staticfiles/js/main.js new file mode 100644 index 0000000..8c618f9 --- /dev/null +++ b/staticfiles/js/main.js @@ -0,0 +1 @@ +console.log("HELLO WORLDSSS"); \ No newline at end of file diff --git a/staticfiles/styles/main.css b/staticfiles/styles/main.css index 3f81942..1bdd882 100644 --- a/staticfiles/styles/main.css +++ b/staticfiles/styles/main.css @@ -1,3 +1,44 @@ * { font-family: "Poppins", sans-serif; +} + +div > input { + background-color: #F2F2F2; + padding-top: 0.75rem; /* py-3 */ + padding-bottom: 0.75rem; + padding-left: 2.5rem; /* px-10 */ + padding-right: 2.5rem; + color: black; + font-weight: 600; /* font-semibold */ + border-radius: 1.5rem; /* rounded-3xl */ + display: flex; + justify-content: center; + width: 100%; +} + +.form-style form input, form textarea, form select { + background-color: #F2F2F2; + padding-top: 0.75rem; /* py-3 */ + padding-bottom: 0.75rem; + padding-left: 2.5rem; /* px-10 */ + padding-right: 2.5rem; + color: black; + font-weight: 600; /* font-semibold */ + border-radius: 1.5rem; /* rounded-3xl */ + display: flex; + justify-content: center; +} +.form-style form input:focus, form textarea:focus, form select:focus { + outline: none; + border-color: #674ea7; + box-shadow: 0 0 0 3px #674ea7; +} +@keyframes shine { + 0% { background-position: -200% 0; } + 100% { background-position: 200% 0; } +} +.animate-shine { + background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.3)); + background-size: 200% 100%; + animation: shine 3s infinite; } \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index 2441673..eaf89d0 100644 --- a/templates/base.html +++ b/templates/base.html @@ -5,17 +5,20 @@ + - - - - + + + {% block meta %}{% endblock meta %} +