spsp

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

post_status.html (1246B) - raw


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 
      4     <head>
      5         <title>SPSP</title>
      6         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
      7         <meta name="viewport" content="width=device-width, initial-scale=1">
      8         <meta name="author" content="Samir Parikh" > 
      9         <link rel="icon" type="image/png" href="/assets/favicon.png" >
     10         <!--<link rel="stylesheet" href="notsoplainnew.css" type="text/css" >-->
     11     </head> 
     12     
     13     <body>
     14         <h1>Simple Perl Status Poster</h1>
     15         <hr>
     16         <h2>Post Your Status</h2>
     17 
     18     <form action="/cgi/spsp.cgi" method="post">
     19 
     20     <table>
     21         <tr>
     22             <td><strong>Title:</strong></td>
     23             <td><input name="title" size=50 autofocus></td>
     24         </tr>
     25         <tr>
     26             <td><strong>Status:</strong></td>
     27             <td>
     28                 <textarea name="status" rows=20 cols=50 wrap="soft"></textarea>
     29             </td>
     30         </tr>
     31         <tr>
     32             <td><strong>Password:</strong></td>
     33             <td><input type="password" name="password" size=50></td>
     34         </tr>
     35         <tr>
     36             <td>&nbsp;</td>
     37             <td><input type="submit"> <input type="reset"></td>
     38         </tr>
     39     </table>
     40 
     41     </form>
     42 
     43     </body>
     44 
     45 </html>