Skip to content

Latest commit

 

History

History
152 lines (125 loc) · 6.75 KB

README.md

File metadata and controls

152 lines (125 loc) · 6.75 KB

Library MVC

.Net MicrosoftSQLServer C#

IntroductionInstallation GuideScreenshotsCreditsLicenseContributors

GitHub Repo stars GitHub forks GitHub watchers

ℹ️Introduction

Library application that you can manage the books and it's users using Microsoft's ASP-NET MVC architecture. It has 2 panels which are Admin and User.

It uses MS-SQL | EntityFramework on DB side. Authentication and authorization processes are performed using Web Cookies (aspNet form-auth).

Admin Actions User Actions
Create, Update and Delete a User Borrow a Book
Create, Update, Delete and Return a book Return the Book
Get book(s) Get book(s)
Get and Delete all auth Logs Get own profile auth Logs
Update own profile credentials Update own profile credentials

📃Installation Guide

To clone and run this application, you'll need Git, ASP NET, MS-SQL and Visual Studio installed on your computer. From your command line:

# Clone this repository
$ git clone https://github.com/Ctere1/LibraryMVC
# Go into the repository
$ cd LibraryMVC

After these steps, you should be able to open the project/solution with Visual Studio, build it and run it from there.

🪟Screenshots

Login-Signup Pages

  • User can login on this page.

    Screenshot_20221226_032707

  • User can signup on this page.

    ss2

  • Admin can login on this page.

    ss3

User Pages

  • User can see information about all own books in a table on this page (e.g. borrowed books and due date expired books).

    user1

  • User can see all own book's details on this page (red lines means book's date expired).

    user2

  • User can see all library books and their details. Also user can Borrow the books on this page.

    user3

  • For borrowing the book, user can choose a IssuedTo date on this page.

    user6

  • User can see all own logs and their details on this page.

    user4

  • User can change own account credentials on this page.

    user5

Admin Pages

  • Admin can see information about all library books and users in a table on this page (e.g. all books, due date expired books, active books, all users).

    admin1

  • Admin can Edit, Create and Delete information about all library users. Also admin can see user's books on this page.

    admin2

  • Admin can Edit, Create and Delete information about all library books on this page.

    admin3

  • Admin can see and Delete all auth logs on this page.

    admin4

  • Admin can change own account credentials on this page.

    admin5

📝Credits

This software uses the following packages:

  • Microsoft.AspNet.Mvc
  • Bootstrap
  • EntityFramework

©License

GitHub

Copyright (c) 2022 Cemil TAN

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

📌Contributors