dear perl monks, i was selected to do a project in a premiere institute.however due to my session running late and hence my semester going on i couldn't join it immediately.so i was very latemy project is to develop an online registration form for the windows lab.in this a person enters the name and password .we first check whether the person has a linux account with the same login name ...if it exists then we assign himm the windows login.the administrator at the end of the day can upload the files of such users by clicking on the icon on the page.i've developed dome of the project myself as below and i'm trying more but the time is less for the dead line and so ilook upto u to help me get the valuable CERTIFICATE
#!/usr/bin/perl -w use strict; use CGI qw/:standard *table start_ul/; #use CGI ::safe qw/:standard/; my $username=param('username) || ' '; my $password=param('password') || ' '; <html> <head> <title>ONLINE REGISTRATION FORM</title> </head> <body style="background-color: blue;"> <div style="color:white;font-family:Tahoma, helvetica,arial;" align +="center"> <h1>Your Registration Form</h1> <p>You can have a <i>Windows </i> account only if u have a <b> Linux + account</b> <p><font color ="red">if you don't have a <b> Linux account</b> click +<a href="http://www.iitk.ac.in"><font color ="yellow">Here</font></a> +to go back to the home page</font> <form action ="users/cc/pr/vaib/1.htm method ="post" enctype ="applica +tion/x-www-form-urlencoded"> <table cellspacing="1" border="0" cellpadding="2" bgcolor="white" styl +e="font: 10pt;"><Tr style="background-color:yellow"> <td><strong>User Name:</strong></td> <td> <input type="text" size="15" maxlength ="25" name="username"></td +> </Tr> <Tr style="background-color:yellow"> <td><strong>Password:</strong></td> <td><input type="password" size="15" maxlength ="15" name = "password" +></td> </Tr> </table> <p><input type= "submit"> <input type="reset" value="clear"></p> </form> </div> </body> </html>

20030707 Edit by Corion


In reply to help with the project by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.