Hi
I am looking for a single page CMS ideally only using HTML5 / CSS / Javascript and a local flat file.
The single webpage will contain a list of names and contact numbers etc in a table.
I want an edit button on the page that allows anyone to update the content within the page e.g if someone joins or leaves the company they can update their contact details.
I have found a lot of PHP / MYSQL based single page CMS out there, but wondering if there was something was just HTML / CSS and Javascript based?
Just looking for something really really simple!
Thanks
The languages you mention - HTML / CSS / Javascript are client languages; the reason most CMS's use PHP (or other) and some database is because they reside on the server which in turn modifies the page on the server, not the client. A client can't edit the server without server side code to interpret the request.
You could probably use Javascript, edit the page and store a copy locally, but only you'd see the changes; no one else.