From 45b5f77b8bb4755f53243c3a8e5c30469b3fad92 Mon Sep 17 00:00:00 2001 From: Fayol Zeudom <115123676+arielfayol37@users.noreply.github.com> Date: Sat, 21 Oct 2023 20:51:08 -0500 Subject: [PATCH 1/6] Update README.md --- README.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/README.md b/README.md index 02014946..9a06ffa8 100644 --- a/README.md +++ b/README.md @@ -48,17 +48,6 @@ python manage.py runserver ``` Then copy and paste the url from the terminal to your browser. -8. Credentials: - If you want to test the app with some prefilled data, - use the following for instructor login -```bash -email: andy.richter@valpo.edu password: la -``` -use the following for student login -```bash -email:arielfayol37@gmail.com password:la -``` - ## Impressive Features From 8443eee076381fbcc8e26bc0af711fba81a9f356 Mon Sep 17 00:00:00 2001 From: Fayol Zeudom <115123676+arielfayol37@users.noreply.github.com> Date: Tue, 21 Nov 2023 17:07:25 -0600 Subject: [PATCH 2/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a06ffa8..1064f58c 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This is the README file for the Dr_R web application built using Django. The app 1. Clone the repository: ```bash -git clone https://github.com/arielfayol37/Dr_r.git +git clone https://github.com/arielfayol37/Dr_r ``` 2. Change into the project directory: From 9cf57ac62d5d59b3a9b0bc20765c92df47a71506 Mon Sep 17 00:00:00 2001 From: Fayol Zeudom <115123676+arielfayol37@users.noreply.github.com> Date: Tue, 21 Nov 2023 17:35:37 -0600 Subject: [PATCH 3/6] Update registration_style.css --- astros/static/astros/css/registration_style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astros/static/astros/css/registration_style.css b/astros/static/astros/css/registration_style.css index 85f151fa..db3d1c8e 100644 --- a/astros/static/astros/css/registration_style.css +++ b/astros/static/astros/css/registration_style.css @@ -21,7 +21,7 @@ body.body { background-color: black !important; color:white; - overflow: hidden; /*To hide Scroll Bar*/ + overflow: visible; /*To hide Scroll Bar*/ } .landing-container { @@ -197,4 +197,4 @@ input.form-control { .registration-form { width:90%; } - } \ No newline at end of file + } From 983d57c3776e09a285bb4dd1181a622e0b78894e Mon Sep 17 00:00:00 2001 From: Fayol Zeudom <115123676+arielfayol37@users.noreply.github.com> Date: Tue, 21 Nov 2023 17:42:01 -0600 Subject: [PATCH 4/6] Update registration_style.css --- astros/static/astros/css/registration_style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astros/static/astros/css/registration_style.css b/astros/static/astros/css/registration_style.css index db3d1c8e..a86e690d 100644 --- a/astros/static/astros/css/registration_style.css +++ b/astros/static/astros/css/registration_style.css @@ -21,7 +21,7 @@ body.body { background-color: black !important; color:white; - overflow: visible; /*To hide Scroll Bar*/ + overflow: hidden; /*To hide Scroll Bar*/ } .landing-container { From f16cb3a281b7099e20b8733b2827e454a371eb77 Mon Sep 17 00:00:00 2001 From: Fayol Zeudom <115123676+arielfayol37@users.noreply.github.com> Date: Tue, 21 Nov 2023 17:45:01 -0600 Subject: [PATCH 5/6] Update registration.js --- astros/static/astros/js/registration.js | 1 + 1 file changed, 1 insertion(+) diff --git a/astros/static/astros/js/registration.js b/astros/static/astros/js/registration.js index 5d1700cc..3b13ae1d 100644 --- a/astros/static/astros/js/registration.js +++ b/astros/static/astros/js/registration.js @@ -100,6 +100,7 @@ submitBtns.forEach((submitBtn)=>{ authenticationArea.classList.remove('closed'); } }); + submitBtn.scrollIntoView({behavior: 'smooth'}); }else { fetch('/authentification/validate_code', { method: 'POST', From 0fa53c1b19d80a0bd20f8dc4cb743083d42172ab Mon Sep 17 00:00:00 2001 From: Fayol Zeudom <115123676+arielfayol37@users.noreply.github.com> Date: Tue, 21 Nov 2023 17:56:42 -0600 Subject: [PATCH 6/6] Update models.py --- phobos/models.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/phobos/models.py b/phobos/models.py index 36ce941d..73451c56 100644 --- a/phobos/models.py +++ b/phobos/models.py @@ -11,9 +11,8 @@ class DifficultyChoices(models.TextChoices): DIFFICULT = 'DIFFICULT', 'Difficult' class SubjectChoices(models.TextChoices): - - COMPUTER_SCIENCE = 'COMPUTER_SCIENCE', 'Computer Science' - MATHS = 'MATHS', 'Maths' + # COMPUTER_SCIENCE = 'COMPUTER_SCIENCE', 'Computer Science' + # MATHS = 'MATHS', 'Maths' PHYSICS = 'PHYSICS', 'Physics' # TODO: Add more subject choices as needed.