diff --git a/StudentFunctions.py b/StudentFunctions.py index c4b494d..8436878 100644 --- a/StudentFunctions.py +++ b/StudentFunctions.py @@ -10,7 +10,8 @@ def createStudent(studentID, studentPWD, enrolledCourses = []): Item = { 'StudentId' : studentID, 'StudentPWD' : studentPWD, - 'EnrolledCourses' : enrolledCourses + 'EnrolledCourses' : enrolledCourses, + 'AuthToken' : None } ) @@ -19,4 +20,4 @@ def createStudent(studentID, studentPWD, enrolledCourses = []): if __name__ == "__main__": - createStudent("awp10101", "myPassword") \ No newline at end of file + createStudent("testUser", "myNewPassword") \ No newline at end of file diff --git a/class_registration_app/ngrok 2 b/class_registration_app/ngrok 2 new file mode 100755 index 0000000..bfb7c9a Binary files /dev/null and b/class_registration_app/ngrok 2 differ diff --git a/class_registration_app/src/assets/main.css b/class_registration_app/src/assets/main.css index 34b9ef6..4fe1cb1 100644 --- a/class_registration_app/src/assets/main.css +++ b/class_registration_app/src/assets/main.css @@ -38,6 +38,9 @@ a, padding: 0 auto } */ } + + + */ .btn-97, .btn-97 *, @@ -96,6 +99,7 @@ a, box-shadow: 0 6px 0 -4px #fff, 0 9px 0 -4px #aaa, 0 12px 0 -4px #000; transform: translateY(-5px); } + .homehead{ background-color: #000e2f; color: white; @@ -104,3 +108,26 @@ a, text-align: center; padding: 12px; } + + +.course-list-item { + padding: 20px; + display: flex; + margin-top: 10px; + margin-bottom: 40px; + min-width: 80vw; + background-color: #ffffff; + border-radius: 10px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +} + +.course-name { + margin-left: 1vw; + font-weight: 500; +} + +.course-location { + margin-left: 1vh; + +} + diff --git a/class_registration_app/src/components/CourseSearch.vue b/class_registration_app/src/components/CourseSearch.vue index a2018d0..bda871f 100644 --- a/class_registration_app/src/components/CourseSearch.vue +++ b/class_registration_app/src/components/CourseSearch.vue @@ -1,59 +1,125 @@ -// Your API Gateway endpoint URL + + + \ No newline at end of file diff --git a/class_registration_app/src/components/DashBoard.vue b/class_registration_app/src/components/DashBoard.vue index 43543ae..0fb437c 100644 --- a/class_registration_app/src/components/DashBoard.vue +++ b/class_registration_app/src/components/DashBoard.vue @@ -37,6 +37,11 @@ + + + + + diff --git a/class_registration_app/src/components/EnrolledCourseList.vue b/class_registration_app/src/components/EnrolledCourseList.vue new file mode 100644 index 0000000..697cc61 --- /dev/null +++ b/class_registration_app/src/components/EnrolledCourseList.vue @@ -0,0 +1,12 @@ + + + + + \ No newline at end of file diff --git a/class_registration_app/src/components/LoginPage.vue b/class_registration_app/src/components/LoginPage.vue index 1ea4c91..c5c689f 100644 --- a/class_registration_app/src/components/LoginPage.vue +++ b/class_registration_app/src/components/LoginPage.vue @@ -1,22 +1,58 @@ - - + +