First commit

This commit is contained in:
2022-06-16 00:31:24 +02:00
commit f0136ab01e
6 changed files with 779 additions and 0 deletions

31
Source/Form.html Normal file
View File

@@ -0,0 +1,31 @@
<html>
<head>
<link rel="stylesheet" href="Style.css">
</head>
<body>
<form action="/Comments" method="get">
<div>
<h3>Comments</h3>
<button type="submit" name="Action" value="Delete">Delete Selected</button>
<button type="submit" name="Action" value="Login">Admin Login</button>
</div>
<br>
<div>
<label>Your Secret Key (Optional):</label>
<span><input type="password" name="SecretKey"></span>
</div>
<br>
<div>
<label>CAPTCHA:</label>
<span><input type="text" name="CAPTCHA"></span>
</div>
<br>
<div>
<label>Your Reply:</label>
<button type="submit" name="Action" value="Post">Post as New Comment</button>
<textarea name="Comment"></textarea>
</div>
<br>
</form>
</body>
</html>