An open API service indexing awesome lists of open source software.

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

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
```