This commit is contained in:
Pascal Engélibert 2023-07-13 11:36:31 +02:00
commit 4e8f84480d
48 changed files with 6355 additions and 1192 deletions

15
client-js/basic.html Normal file
View file

@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Webcomment</title>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/webcomment.js"></script>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div id="comments"></div>
<input type="button" value="Admin" onclick="webcomments['comments'].prompt_admin_psw()"/>
<script type="text/javascript">webcomment_topic("comments", "http://127.0.0.1:31720", "test");</script>
</body>
</html>