spsp

Repository for the "Simplified Perl Status Poster" (SPSP).
git clone git://git.samirparikh.com/spsp
Log | Files | Refs | README

commit 271dd9b936fb965758763c847146b2fd52dba976
parent ec16824a8645bb6f88e86863bc2ed6517e80eeb5
Author: Samir Parikh <noreply@samirparikh.com>
Date:   Thu,  2 Feb 2023 03:03:10 +0000

initial commit for html page to post your status

Diffstat:
Ahtml/post_status.html | 45+++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+), 0 deletions(-)

diff --git a/html/post_status.html b/html/post_status.html @@ -0,0 +1,45 @@ +<!DOCTYPE html> +<html lang="en"> + + <head> + <title>SPSP</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" > + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="author" content="Samir Parikh" > + <link rel="icon" type="image/png" href="/assets/favicon.png" > + <link rel="stylesheet" href="notsoplainnew.css" type="text/css" > + </head> + + <body> + <h1>Simple Perl Status Poster</h1> + <hr> + <h2>Post Your Status</h2> + + <form action="/cgi-bin/hello.cgi" method="post"> + + <table> + <tr> + <td><strong>Title:</strong></td> + <td><input name="title" size=50></td> + </tr> + <tr> + <td><strong>Status:</strong></td> + <td> + <textarea name="status" rows=20 cols=50 wrap="soft"></textarea> + </td> + </tr> + <tr> + <td><strong>Password:</strong></td> + <td><input type="password" name="password" size=50></td> + </tr> + <tr> + <td>&nbsp;</td> + <td><input type="submit"> <input type="reset"></td> + </tr> + </table> + + </form> + + </body> + +</html>