diff --git a/index.html b/index.html index 464610f..22ad2ee 100644 --- a/index.html +++ b/index.html @@ -3,12 +3,13 @@ - + AAS-Tracker
+

AAS-Tracker

Welcome, User Choose a user type to continue.

diff --git a/resources/css/dashboardstyles.css b/resources/css/dashboardstyles.css index d624faa..5b89cb3 100644 --- a/resources/css/dashboardstyles.css +++ b/resources/css/dashboardstyles.css @@ -13,7 +13,7 @@ height: 60px; width: 100%; /* background-color: rgba(145, 251, 230, 0.5); */ - background: #b7b6b6; + background: rgb(135, 205, 235); box-shadow: 0px 2px 20px 0px rgba(1, 41, 112, 0.10); } @@ -58,7 +58,7 @@ .side-bar{ height: 100%; /* flex-basis: 20%; */ - background: #a7a5a5; + background: skyblue; box-shadow: 0px 0px 20px 0px rgba(1, 41, 112, 0.10); } @@ -80,4 +80,104 @@ /* height: 100%;*/ background: #F6F9FF; width: 100%; +} + +.attendance-sheet { + display: flex; + justify-content: center; + background: #fff; + padding: 40px; + border-radius: 10px; + box-shadow: 0 10px rgba(0, 0, 0, 0.1); + margin: 100px 0; + justify-content: center; + /* width: 400px; + padding: 35px; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + background: #fff; + border-radius: 10px */ +} + +.attendance-sheet p { + display: inline; + font-family: 600; + font-size: 15px; + margin-bottom: 8px; +} + +.attendance-sheet input { + width: 100%; + height: 50px; + border: 1px solid skyblue; + outline: 0; + padding: 10px; + margin: 10px; + border-radius: 5px; +} + +.attendance-sheet button { + width: 100%; + height: 50px; + background: #a780be; + color: #fff; + border: 0; + outline: 0; + border-radius: 5px; + cursor: pointer; + margin: 10px 0; + font-weight: 500; +} + +.attendance-sheet button:hover { + background: #8d35c0; +} + +#imgBoxK{ + width: 100%; + height: 100%; + border-radius: 5px; + margin: 10px; +} + +footer { + position: fixed; + left: 0; + bottom: 0; + width: 100%; + background-color: skyblue; + color: black; + text-align: center; +} + +@media screen and (max-width: 480px) { + .attendance-sheet { + width: 300px; + } + + .attendance-sheet h1 { + font-size: 25px; + } + + .attendance-sheet p { + font-size: 13px; + } + + .attendance-sheet input { + font-size: 13px; + } + + .attendance-sheet button { + font-size: 13px; + } + + .attendance-sheet button:hover { + font-size: 13px; + } + + .attendance-sheet button:active { + font-size: 13px; + } } \ No newline at end of file diff --git a/resources/images/logo.png b/resources/images/logo.png new file mode 100644 index 0000000..7295f72 Binary files /dev/null and b/resources/images/logo.png differ diff --git a/resources/pages/adminlogin.html b/resources/pages/adminlogin.html index ea64753..caa19ce 100644 --- a/resources/pages/adminlogin.html +++ b/resources/pages/adminlogin.html @@ -9,6 +9,7 @@
+

AAS-Tracker

Welcome here, Admin Login to continue.

diff --git a/resources/pages/attendance-sheet.html b/resources/pages/attendance-sheet.html new file mode 100644 index 0000000..1c689b8 --- /dev/null +++ b/resources/pages/attendance-sheet.html @@ -0,0 +1,93 @@ + + + + + + + User Dashboard + + +
+ + +
+ +
+

Attendance Sheet

+
+ + + + + + + + +
+ +
+ +
This is made with 💓 from Accra By Michelle
+
+ + + +
+
+
+ + \ No newline at end of file diff --git a/resources/pages/dashboard.html b/resources/pages/dashboard.html index e8567c8..812deca 100644 --- a/resources/pages/dashboard.html +++ b/resources/pages/dashboard.html @@ -24,7 +24,7 @@

Mark-Finley

  • - Attendance Sheet
  • + Attendance Sheet
  • @@ -49,11 +49,11 @@

    Mark-Finley

  • - Logout
  • + Logout
    - +
    diff --git a/resources/pages/studentlogin.html b/resources/pages/studentlogin.html index 2d0b61e..d62e7a1 100644 --- a/resources/pages/studentlogin.html +++ b/resources/pages/studentlogin.html @@ -9,6 +9,7 @@
    +

    AAS-Tracker

    Welcome here, Student Login to continue.

    diff --git a/resources/pages/teacherlogin.html b/resources/pages/teacherlogin.html index 7298a4e..0be75bb 100644 --- a/resources/pages/teacherlogin.html +++ b/resources/pages/teacherlogin.html @@ -9,6 +9,7 @@
    +

    AAS-Tracker

    Welcome here, Teacher Login to continue.

    diff --git a/resources/qr-code-gen/qr-code.py b/resources/qr-code-gen/qr-code.py index 72cba17..a342133 100644 --- a/resources/qr-code-gen/qr-code.py +++ b/resources/qr-code-gen/qr-code.py @@ -4,4 +4,5 @@ for id in student_id: generate_qr_code = qrcode.make(str(id)) - generate_qr_code.save(f"resources/qr-code-gen/image{id}.png") \ No newline at end of file + generate_qr_code.save(f"resources/qr-code-gen/image{id}.png") + print(f"QR Code for {id} generated successfully") \ No newline at end of file