Changeset 26 for branches


Ignore:
Timestamp:
Oct 12, 2008, 7:58:44 PM (16 years ago)
Author:
maron
Message:

Form registrace

Location:
branches/3
Files:
1 added
6 edited

Legend:

Unmodified
Added
Removed
  • branches/3/config.php

    • Property ignore set to svn:ignore
  • branches/3/functions.php

    r25 r26  
    11<?php
    2 
    3   function GetRemoteAddress()
    4   {
    5     if(array_key_exists('HTTP_X_FORWARDED_FOR',$_SERVER)) $IP = $_SERVER['HTTP_X_FORWARDED_FOR'] ;
    6     else $IP = $_SERVER['REMOTE_ADDR'];
    7     //if($IP == '127.0.0.1')
    8     return($IP);
    9   }
    102
    113  function ShowHeader()
    124  { // BEGIN function ShowHeader
    13     global $Config,$menu;
     5    global $Config,$menu,$User;
    146        echo '<?xml version="1.0" encoding="'.$Config['Charset'].'"?\>
    157    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     
    3729          };
    3830       
    39           echo '</ul>
     31          echo '</ul>';
     32          echo '
    4033        </div>
    4134      </div>
  • branches/3/global.php

    r25 r26  
    1414$Database->Prefix = $Config['Database']['Prefix'];
    1515$Database->charset($Config['Database']['Charset']);
     16$User = new User($Database);
    1617
    1718  include('events.php');
  • branches/3/index.php

    r25 r26  
    33  include('global.php');
    44  ShowHeader();
    5 
    6   echo HOME_PAGE;
    7 
     5 
     6  if (array_key_exists('user', $_GET)) $User->WriteRegistration(); else
     7    echo HOME_PAGE;
     8 
    89  ShowFoodter()
    910?>
  • branches/3/language_cz.php

    r25 r26  
    5252');
    5353
     54define('REGISTRATION_PAGE_NAME', 'Jméno:');
     55define('REGISTRATION_PAGE_PASS', 'Heslo:');
     56define('REGISTRATION_PAGE_PASS2', 'Potvrzení Hesla:');
     57define('REGISTRATION_PAGE_EMAIL', 'Email: ');
     58define('REGISTRATION_PAGE_FULLNAME', 'Celé jméno:');
     59define('REGISTRATION_PAGE_LANGUAGE', 'Defaultní jazyk:');
     60define('REGISTRATION_PAGE_BUTTON', 'Registrovat');
     61define('REGISTRATION_PAGE_TITLE', 'Registrace');
     62
     63
    5464//menu
    5565
    56 $menu = array(
    57   array('Hlavní strana','Hlavní strana, s pokyny pro překladatele a bannery','index.php'),
    58   array('Registrace','Zde si můžete vytvořit nový účet','?user=new'),
    59   array('Forum projektu','Diskuze okolo překladu WoW','/forum'),
    60 
    61 );
    62 
     66$menu[0] = array('Hlavní strana','Hlavní strana, s pokyny pro překladatele a bannery','index.php');
     67$menu[1] = array('Forum projektu','Diskuze okolo překladu WoW','http://wow.zdechov.net/forum/viewforum.php?f=22');
     68$menu[2] = array('Registrace','Zde si můžete vytvořit nový účet','?user=new');
    6369?>
  • branches/3/style.css

    r25 r26  
    137137 
    138138 /**************** form *******************/
    139  input, textarea {
     139 input, textarea, select {
    140140   background-color: #E8E8E8;
    141141   border: thin #c43300 solid;
Note: See TracChangeset for help on using the changeset viewer.