Quelltext der Datei: http://www.michaelster.ch/lernen/login_form.php

Dateigrösse: 2.53 kb

[Anzeige ohne Zeilennummern]


 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 2         "http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-transitional.dtd">
 3 <html xmlns="http://www.w3.org/1999/xhtml">
 4 <head>
 5 <!--                                                                -->
 6 <!--  (c) KLIK! Klein Informatik  www[dot]klik-info[dot]ch          -->
 7 <!--  rklein[at]klik-info[dot]ch                                    -->
 8 <!--                                                                -->
 9     <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
10         
11         <title>Login Administrator WebSite</title>
12 
13     <style type="text/css" media="screen"><!--
14     #panel     { width: 290px; height:auto; text-align: left; margin: 20px auto; padding: 10px; border: 1px dotted black; background-color:#fff; }
15     body     { font-family: Verdana, Arial, Sans-Serif; font-size:11px; margin: 50px 0px; padding: 0px; text-align: center; background-color:#eee; }
16     span.alert  { font-size:11px; font-weight: bold; color:#ff0000; }
17     a          { text-decoration: none; font-size:11px; font-weight: bold; color:#666; }
18     td      { line-height: 18px; }
19     td.balken    { font-weight: bold; padding: 5px 10px; background-color:yellow; width:auto; border: 1px dotted black; }
20     --></style>
21 
22 </head>
23 
24 <body background="./img/sidebar_bgcolor.gif" onload="document.login.password.focus()">
25         <div id="panel">
26             <form name="login" action="admin/main_tpl.php?kap=<?php echo $_GET['kap']; ?>&amp;navid=<?php echo $_GET['navid']; ?>" method="post">
27                 <table border="0" cellpadding="0" cellspacing="1" width="285">
28                     <tr height="24">
29                         <td height="24" class="balken" colspan="2">Login Redaktion</td>
30                     </tr>
31                     <tr>
32                         <td colspan="2" height="28" align="center">
33                         <?php if ($status == AUTH_WRONG_LOGIN) 
34                         { echo '<span class="alert">Login-Daten sind nicht korrekt !</span>'; } ?></td>
35                     </tr>
36                     <tr>
37                         <td colspan="2" height="28">Bitte Benutzernamen und Passwort eingeben:<br><br></td>
38                     </tr>
39                     <tr>
40                         <td>Benutzername:&nbsp;</td>
41                         <td align="left"><input type="text" name="username" value="" /></td>
42                     </tr>
43                     <tr>
44                         <td>Passwort:</td>
45                         <td align="left"><input type="password" name="password" /></td>
46                     </tr>
47                     <tr>
48                         <td></td>
49                         <td align="left"><input type="submit" name="login" value="Login" /></td>
50                     </tr>
51                 </table>
52             </form>
53         </div>
54         
55 <br>
56 <a href="_index.php?kap=links&amp;navid=5">zur&uuml;ck</a>
57 <br>
58 
59 </body>
60 </html>