Changeset 62


Ignore:
Timestamp:
Apr 3, 2008, 7:44:23 AM (17 years ago)
Author:
george
Message:

Zabezpečení heslem na stránce projektů pro Asteu.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • www/www/astea/index.php

    r13 r62  
     1<?php
     2
     3session_start();
     4
     5echo('
    16<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    27<html>
     
    611    <title>Práce pro Asteu</title>
    712  </head>
    8 <body>
    9   <h2>Párování snímačů�</h2>
     13  <body>');
     14
     15if(array_key_exists('Action', $_GET) and addslashes($_GET['Action'] == 'Login'))
     16{
     17  if(addslashes($_POST['Password']) == 'agilent') $_SESSION['AccessGranted'] = 1;
     18}
     19
     20if(array_key_exists('AccessGranted', $_SESSION))
     21{
     22  echo('<h2>Párování snímačů</h2>
    1023  <hr>
    11    
    12   <table border="1" cellspacing="0" cellpadding="3">
    13 <?php
     24  <table border="1" cellspacing="0" cellpadding="3">');
    1425
    1526function ReleaseRow($Version, $ExeName, $ChangeLog, $Other)
     
    2132}
    2233
    23 ?>
    24   <tr><th>Verze</th><th>Instalační soubor</th><th>Změny</th><th>Další dokumenty</th</tr>
    25 <?php
    26   ReleaseRow('8.24', 'InstalaceParovaniSnimacu', 'Novinky', '&nbsp;');
     34echo('<tr><th>Verze</th><th>Instalační soubor</th><th>Změny</th><th>Další dokumenty</th></tr>');
     35 
     36ReleaseRow('8.24', 'InstalaceParovaniSnimacu', 'Novinky', '&nbsp;');
    2737/*
    2838  ReleaseRow('8.23', 'InstalaceParovaniSnimacu', 'Novinky', '&nbsp;');
     
    4858  ReleaseRow('6.9', 'InstalaceParovani', 'Novinky', '&nbsp');
    4959*/
    50 ?>
    51   </table>
     60
     61echo('</table>
    5262 
    5363  <br>
    54   <h2>Nastavení dveří/h2>
     64  <h2>Nastavení dveří</h2>
    5565  <hr>
    5666  <table border="1" cellspacing="0" cellpadding="3">
    57   <tr><th>Verze</th><th>Instalační soubor</th><th>Změny</th><th>Dalěí dokumenty</th</tr>
     67  <tr><th>Verze</th><th>Instalační soubor</th><th>Změny</th><th>Další dokumenty</th></tr>');
    5868 
    59 <?php
    6069  ReleaseRow('1.1.14', 'InstalaceNastaveniDveri', 'NovinkyDvere', '&nbsp');
    6170/*
     
    6776  ReleaseRow('1.1.8', 'InstalaceNastaveniDveri', 'Novinky', '&nbsp');
    6877*/
    69 ?>
    70   </table>
     78  echo('</table>');
     79} else
     80{
     81  echo('<form action="?Action=Login" method="post">'.
     82  'Zadejte heslo: <input type="text" name="Password"> <input type="submit" value="Přihlásit"></form>');
     83}
    7184
    72 </body></html>
     85echo('</body></html>');
Note: See TracChangeset for help on using the changeset viewer.