document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <div id="form-box">
  2.     <form id="userForm" method="post">
  3.         <input type="hidden" value="${actionOneURL}" id="actionMainURL" />
  4.         <fieldset>
  5.             <p>
  6.                 <label for="userName">UserName</label>
  7.                 <input type="text" name="userName" id="userName">
  8.             </p>
  9.             <p>
  10.                 <label for="password">Password</label>
  11.                 <input type="password" name="password" id="password">
  12.             </p>
  13.             <p>
  14.                 Confirm Password : <input type="password" name="confirmPassword"
  15.                     id="confirmPassword">
  16.             </p>
  17.             <p>
  18.                 DateOfBirth : <input type="text" name="dateOfBirth" id="dateOfBirth">
  19.             </p>
  20.             <p>
  21.                 Gender : Male<input type="radio" name="gender" value="Male">
  22.                          <br />
  23.                          Female<input type="radio" name="gender" value="Female">
  24.             </p>
  25.             <br /> <input type="submit" value="Validate!">
  26.         </fieldset>
  27.     </form>
  28. </div>
');