PlainDiscuss/Source/Form.html

32 lines
739 B
HTML

<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>