This repository now contains a pure HTML/CSS/JavaScript frontend for the
library system. There is no backend required to browse the pages; you may serve
them with any static web server (Apache, nginx, live-server, etc.) or simply
open the files in your browser.
/public
index.html
books.html
book-detail.html
login.html
register.html
dashboard.html
css/style.css
js/app.js
img/placeholder.png
README.md
- The
publicdirectory holds all static assets. css/style.csscontains all styles (dark, retro look with minimal rounding and no shadows).js/app.jscontains interaction logic and stub data; homepage search bar submits tobooks.html?q=.
- Start any simple HTTP server pointing at the
publicfolder:cd public npx live-server # or python -m http.server
- Open your browser at the server address (e.g.
http://127.0.0.1:8080).
Currently the JavaScript simulates data; replace the stubs with fetch/AJAX calls once a backend is available.
Happy hacking!