Need to create a simple 'update text on website' from a simple admin page
Hi there,
Have a simple html page which will display a restaurant's specials, each special consisting of an <h2> and a <p>, and they would like a very basic admin html page where they can update these specials in the list and also add or delete them. I need something really really basic, like input box, text area, click add special and it adds it - but not sure where to start, does anybody know how I could achieve this? The admin page doesn't even need to have a login - literally just ability to update specials dynamically.
My html page currently looks like this:
Code:
<div class="specials">
<ul>
<li>
<h2>20% Off all orders this Weekend</h2>
<p>Lorem Ipsum ist ein einfacher Demo-Text für die Print- und Schriftindustrie. Lorem Ipsum ist in der Industrie bereits der Standard Demo-Text seit
<br><br><br>
<a href="tel:0317653059" class="phone">click to call</a>
</p>
</li>
<li>
<h2>20% Off all orders this Weekend</h2>
<p>Lorem Ipsum ist ein einfacher Demo-Text für die Print- und Schriftindustrie. Lorem Ipsum ist in der Industrie bereits der Standard Demo-Text seit
<br><br><br>
<a href="tel:0317653059" class="phone">click to call</a>
</p>
</li>
<li>
<h2>20% Off all orders this Weekend</h2>
<p>Lorem Ipsum ist ein einfacher Demo-Text für die Print- und Schriftindustrie. Lorem Ipsum ist in der Industrie bereits der Standard Demo-Text seit
<br><br><br>
<a href="tel:0317653059" class="phone">click to call</a>
</p>
</li>
</ul>
</div>