index.html - randomcrap - random crap programs of varying quality
 (HTM) git clone git://git.codemadness.org/randomcrap
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       index.html (1198B)
       ---
            1 <title>Donation</title>
            2 
            3 <style type="text/css">
            4 body {
            5         background-color: #fff;
            6         font-family: sans;
            7 }
            8 .form {
            9         margin: 0 auto;
           10         width: 80ex;
           11 }
           12 
           13 textarea, input {
           14         font-size: 140%;
           15 }
           16 </style>
           17 
           18 <div class="form">
           19 <h1>Donation</h1>
           20 
           21 <form method="get" action="/cgi-bin/donate">
           22 
           23 <p>
           24 <label for=""><b>Type of donation:</b></label>
           25 </p>
           26 
           27 <p>
           28 <input type="radio" name="type" id="compliment" value="c" selected /> <label for="compliment">A nice compliment</label>
           29 <input type="radio" name="type" id="hate" value="h" /> <label for="hate">Pure hatred</label>
           30 <input type="radio" name="type" id="joke" value="j" /> <label for="joke">A joke</label>
           31 <input type="radio" name="type" id="million" value="m" /> <label for="million">One million dollars</label>
           32 </p>
           33 
           34 <p>
           35 <label for="msg"><b>Message:</b></label>
           36 </p>
           37 
           38 <p>
           39         <textarea name="msg" cols="69" rows="3" id="msg" required></textarea>
           40 </p>
           41 
           42 <p>
           43         <label for="captcha"><b>Captcha question: do captchas suck?<br/>
           44         Type "yes" without quotes in the field below:</b></label>
           45 </p>
           46 
           47 <p>
           48         <input type="text" name="captcha" id="captcha" value="" placeholder="yes" required size="3" />
           49 </p>
           50 
           51 <p>
           52         <input type="submit" name="pay" value="Pay" />
           53 </p>
           54 
           55 </form>
           56 </div>