├── static ├── img │ ├── books.jpg │ ├── login.jpg │ ├── main-bg.jpg │ ├── add-books.jpg │ ├── database.jpg │ └── logged-in-bg.jpg ├── js │ ├── main.js │ ├── prefixfree.min.js │ └── bootstrap.min.js └── css │ ├── style-admin.css │ ├── style-logged-in.css │ ├── style-add-books.css │ ├── style-login.css │ ├── style-sign-up.css │ ├── style-change-user.css │ ├── style-admin-change.css │ ├── style-all.css │ ├── issue-book.css │ ├── style-admin-login.css │ └── font-awesome.min.css ├── README.md ├── templates ├── Info.html ├── login.html ├── change-admin.html ├── add-books.html ├── change-user.html ├── sign-up.html ├── User-Avail-Books.html ├── logged-in.html ├── issued-books-user.html ├── admin.html ├── all.html ├── admin-login.html └── issue-book.html └── library.py /static/img/books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeeveshN/Library-Managment-System/HEAD/static/img/books.jpg -------------------------------------------------------------------------------- /static/img/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeeveshN/Library-Managment-System/HEAD/static/img/login.jpg -------------------------------------------------------------------------------- /static/img/main-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeeveshN/Library-Managment-System/HEAD/static/img/main-bg.jpg -------------------------------------------------------------------------------- /static/img/add-books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeeveshN/Library-Managment-System/HEAD/static/img/add-books.jpg -------------------------------------------------------------------------------- /static/img/database.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeeveshN/Library-Managment-System/HEAD/static/img/database.jpg -------------------------------------------------------------------------------- /static/img/logged-in-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeeveshN/Library-Managment-System/HEAD/static/img/logged-in-bg.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Library Management System 2 | 3 | This Library Management System is based on Flask. 4 | 5 | 6 | ### Installing 7 | 8 | To install MongoDb 9 | 10 | ``` 11 | sudo apt-get install mongodb 12 | ``` 13 | 14 | To install flask 15 | 16 | ``` 17 | pip install flask 18 | ``` 19 | 20 | To install MongoAlchemy 21 | 22 | ``` 23 | pip install Flask-MongoAlchemy 24 | ``` 25 | ## Getting Started 26 | ``` 27 | git clone https://github.com/JeeveshN/Library-Management-System.git 28 | cd Library-Management-System 29 | python library.py 30 | go to http://localhost:5000/ in your browser 31 | ``` 32 | 33 | -------------------------------------------------------------------------------- /templates/Info.html: -------------------------------------------------------------------------------- 1 | 2 |
| Name | 11 |City | 12 |Address | 13 |Pin | 14 |
|---|---|---|---|
| {{ student.name }} | 20 |{{ student.username }} | 21 |{{ student.password }} | 22 |{{ student.number }} | 23 |