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

https://github.com/peteee/simple-js-login

A simple client-side(d) single-user login & registration script that utilises localStorage
https://github.com/peteee/simple-js-login

client-side javascript localstorage login offline single-user single-user-system

Last synced: over 1 year ago
JSON representation

A simple client-side(d) single-user login & registration script that utilises localStorage

Awesome Lists containing this project

README

          

# simple-js-login
A simple client-side(d) single-user login & registration script that utilises localStorage

## USE it like this on any other HTML page

if(localStorage.getItem("logged-in") === "true") {
//do stuff
} else {
//display a message with link to login page...
}