Changeset 15


Ignore:
Timestamp:
Jun 19, 2012, 12:09:42 PM (12 years ago)
Author:
maron
Message:

přihlášení

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/cs_lang.php

    r9 r15  
    1111                ),
    1212       
    13        
     13                'autors' => 'Autoři',
    1414       
    1515       
  • trunk/index.php

    r10 r15  
    11<?php
    22
     3    if(isset($_SERVER['REMOTE_ADDR'])) session_start();
    34       
    45        ini_set('display_errors',1);
     
    2223
    2324        //main body
    24         $Gui = new Gui();
     25        $Gui = new Gui($User);
    2526       
    26         $User->Login('maron','test');
     27        $Form = new Form(array(
     28        array('name' => 'LoginUser',
     29         'description' => 'Jméno',
     30     ),
     31        array('name' => 'LoginPass',
     32         'type' => 'password',
     33         'description' => 'Heslo',
     34         'value' => '',),
     35        array('name' => 'button',
     36         'type' => 'submit',
     37         'value' => 'Přihlásit',
     38         'description' => '<a href="">Registrace</a>',)), 'Přihlášení');
     39        $Form->Show();
     40       
     41
     42        $Form = new Form(array(
     43        array('name' => 'Email',
     44         'description' => 'Email',
     45         'value' => '@',
     46     ),
     47        array('name' => 'RegUser',
     48         'description' => 'Jméno',
     49     ),
     50        array('name' => 'RegPass',
     51         'type' => 'password',
     52         'description' => 'Heslo',
     53         'value' => '',),
     54        array('name' => 'RegPass2',
     55         'type' => 'password',
     56         'description' => 'Povrzení hesla',
     57         'value' => '',),
     58        array('name' => 'button',
     59         'type' => 'submit',
     60         'value' => 'Registrovat',)
     61         ), 'Registrace nového uÅŸivatele');
     62        $Form->Show();
     63
     64        $Logout = new Link('Odhlásit', '?logout' , 'Odhlásit se z webového systému');
     65       
     66        if ($User->Licence(0)) {
     67          echo 'log';
     68          echo $Logout->Get();
     69    }
     70        else echo 'notlog';
    2771       
    2872        $Gui->ShowPage();
Note: See TracChangeset for help on using the changeset viewer.