Changeset 4 for www/is/index.php
- Timestamp:
- Jan 14, 2008, 9:48:39 PM (17 years ago)
- Location:
- www
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
www
-
Property svn:ignore
set to
config.php
php_script_error.log
-
Property svn:ignore
set to
-
www/is/index.php
r1 r4 1 <? 2 require_once(' global.php');1 <?php 2 require_once('../global.php'); 3 3 $Path = $_GET['path']; 4 4 if($Path == '/images/device.png') include(substr($Path, 1)); … … 7 7 echo($Path); 8 8 9 ShowHeader(array('Rozcestník' => '/'),'Informa èní systém');9 ShowHeader(array('Rozcestník' => '/'),'Informační systém'); 10 10 11 11 function Index_ActionLogin() … … 17 17 User_Check(); 18 18 } 19 $Output .= 'U ¾ivatel: '.$User['fullname'].'<br>';19 $Output .= 'Uživatel: '.$User['fullname'].'<br>'; 20 20 } 21 21 … … 23 23 { 24 24 global $Output, $User; 25 $Output .= '<table>U ¾ivatel: '.$User['fullname'].'<br>';25 $Output .= '<table>Uživatel: '.$User['fullname'].'<br>'; 26 26 $Output .= '<form name="dagFormLogon" action="?module=index&action=login" method="post"><span>'. 27 27 '<input type="text" size="8" name="username" value="Jméno" onFocus="if (document.forms.dagFormLogon.username.value==\'Jméno\'){document.forms.dagFormLogon.username.value=\'\';}" onBlur="if (document.forms.dagFormLogon.username.value==\'\'){document.forms.dagFormLogon.username.value=\'Jméno\';}">'. 28 28 '<input type="password" size="8" name="password" value="Heslo" onFocus="if (document.forms.dagFormLogon.password.value==\'Heslo\'){document.forms.dagFormLogon.password.value=\'\';}" onBlur="if (document.forms.dagFormLogon.password.value==\'\'){document.forms.dagFormLogon.password.value=\'Heslo\';}">'. 29 '<input type="submit" value="P øihlásit"></span>'.29 '<input type="submit" value="Přihlásit"></span>'. 30 30 '</form>'; 31 31 }
Note:
See TracChangeset
for help on using the changeset viewer.