Advertisement
Redee

scetch > reg.php

Jun 17th, 2013
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.14 KB | None | 0 0
  1. <?
  2.  
  3. echo '<div id="reg" style="width:300px; margin:5px auto 0 auto;">'."\n";
  4.  
  5. echo
  6. "\t\t\t\t".
  7. '<form action="/reg2" method="post">'.
  8.  
  9.     "\n\t\t\t\t\t".
  10.     '<div id="lab_login" style="float:left; width:70px;">'.
  11.  
  12.         "\n\t\t\t\t\t\t".
  13.         '<label for="inp_login">Логин:</label>'.
  14.  
  15.     "\n\t\t\t\t\t".
  16.     '</div>'.
  17.     //////////--------
  18.  
  19.     "\n\t\t\t\t\t".
  20.     '<div id="for_inp_login">'.
  21.  
  22.         "\n\t\t\t\t\t\t".
  23.         '<input type="text" name="login" id="inp_login" value="" style="width:226px;">'.
  24.  
  25.     "\n\t\t\t\t\t".
  26.     '</div>'.
  27.  
  28.     "\n\t\t\t\t\t".
  29.     '<div class="clear" style="height:5px;"></div>'.
  30.     "\n\t\t\t\t\t<!-- //////////// -->\n".
  31.     /////////////////////////////
  32.  
  33.     "\n\t\t\t\t\t".
  34.     '<div id="lab_pass" style="float:left; width:70px;">'.
  35.  
  36.         "\n\t\t\t\t\t\t".
  37.         '<label for="inp_pass">Пароль:</label>'.
  38.  
  39.     "\n\t\t\t\t\t".
  40.     '</div>'.
  41.     ////////----------
  42.  
  43.     "\n\t\t\t\t\t".
  44.     '<div id="for_inp_pass">'.
  45.  
  46.         "\n\t\t\t\t\t\t".
  47.         '<input type="password" name="pass" id="inp_pass" value="" style="width:226px;">'.
  48.  
  49.     "\n\t\t\t\t\t".
  50.     '</div>'.
  51.  
  52.     "\n\t\t\t\t\t".
  53.     '<div class="clear" style="height:5px;"></div>'.
  54.     "\n\t\t\t\t\t<!-- //////////// -->\n".
  55.     /////////////////////////
  56.  
  57.     "\n\t\t\t\t\t".
  58.     '<div id="lab_email" style="float:left; width:70px;">'.
  59.  
  60.         "\n\t\t\t\t\t\t".
  61.         '<label for="inp_email">e-mail:</label>'.
  62.  
  63.     "\n\t\t\t\t\t".
  64.     '</div>'.
  65.     ////////----------
  66.  
  67.     "\n\t\t\t\t\t".
  68.     '<div id="for_inp_email">'.
  69.  
  70.         "\n\t\t\t\t\t\t".
  71.         '<input type="text" name="email" id="inp_email" value="" style="width:226px;">'.
  72.  
  73.     "\n\t\t\t\t\t".
  74.     '</div>'.
  75.  
  76.     "\n\t\t\t\t\t".
  77.     '<div class="clear" style="height:5px;"></div>'.
  78.     "\n\t\t\t\t\t<!-- //////////// -->\n".
  79.  
  80.     /////////////////////////
  81.     "\n\t\t\t\t\t".
  82.     '<div id="for_inp_subm">'.
  83.  
  84.         "\n\t\t\t\t\t\t".
  85.         '<input type="hidden" name="reg2" value="true" style="width:100px; height:25px;">'.
  86.  
  87.         "\n\t\t\t\t\t\t".
  88.         '<input type="submit" id="inp_subm" value="Подтвердить" style="width:100px; height:25px;">'.
  89.  
  90.     "\n\t\t\t\t\t".
  91.     '</div>'.
  92.     "\n\t\t\t\t\t<!-- //////////// -->".
  93.     ////////////////////////
  94.  
  95. "\n\t\t\t\t".
  96. '</form>';
  97.  
  98. echo "\n\t\t\t".'</div>'."\n";
  99.  
  100. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement