https://github.com/diptangsu/python-class-attendance
https://github.com/diptangsu/python-class-attendance
attendance css html php programmer web-development website
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/diptangsu/python-class-attendance
- Owner: diptangsu
- Created: 2018-02-03T14:00:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-29T14:50:18.000Z (over 8 years ago)
- Last Synced: 2025-08-31T12:41:41.643Z (10 months ago)
- Topics: attendance, css, html, php, programmer, web-development, website
- Language: PHP
- Homepage: https://pythonaot.000webhostapp.com/
- Size: 154 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python-class-attendance
I and [Koustav Chanda](https://github.com/KoustavCode) had organised a Python Skill Development Programme in our college.
I had developed this website in order to monitor the attendance of the students who were selected for the course.
The students were required to create an account. For every class of the programme, they had to login to give their attendance.
The website generated a [calendar view](https://pythonaot.000webhostapp.com/admin/attendance.php) for each student displaying the dates on which they were present.
It's a very sloppy website, as this was my first web development project, but, it served its purpose.
tree structure of the entire project.
```
.
├── admin
│ ├── assignment-questions
│ │ └── assignment1.txt
│ ├── attendance.php
│ ├── calendar.php
│ └── upload.php
├── assets
│ ├── css
│ │ ├── attend.css
│ │ ├── calendar-style.css
│ │ ├── login.css
│ │ ├── register.css
│ │ ├── registered.css
│ │ └── styles.css
│ ├── images
│ │ ├── itachi.ico
│ │ ├── python-icon.ico
│ │ ├── python-logo.png
│ │ └── WhatsApp_Icon.png
│ └── scripts
├── helpers
│ └── conn.php
├── index.php
├── process
│ ├── login.php
│ ├── registered.php
│ ├── reset.php
│ └── submit-assignment.php
├── uploads
│ └── 17dip1.py
└── views
├── forgot_password.php
├── login.php
├── register.php
└── sub-views
└── header.php
11 directories, 25 files
```