inc/auth.inc.php
changeset 71 e1b918eaf69a
parent 65 ce1c4d5e1576
child 79 0c0aa144356a
--- a/inc/auth.inc.php	Tue Jan 29 21:32:48 2008 +0000
+++ b/inc/auth.inc.php	Sat Feb 02 15:39:04 2008 +0000
@@ -1,4 +1,4 @@
-<?
+<?php
 
 /*  PowerAdmin, a friendly web-based admin tool for PowerDNS.
  *  See <https://rejo.zenger.nl/poweradmin> for more details.
@@ -84,28 +84,28 @@
 		print "<div class=\"$type\">$msg</div>\n";
 	}
 	?>
-	<h2><? echo _('Login'); ?></h2>
-	<?
+	<h2><?php echo _('Login'); ?></h2>
+	<?php
 	?>
-	<form method="post" action="<? echo $_SERVER["PHP_SELF"] ?>">
+	<form method="post" action="<?php echo $_SERVER["PHP_SELF"] ?>">
 	 <table border="0">
 	  <tr>
-	   <td class="n"><? echo _('Login'); ?>:</td>
+	   <td class="n"><?php echo _('Login'); ?>:</td>
 	   <td class="n"><input type="text" class="input" name="username"></td>
 	  </tr>
 	  <tr>
-	   <td class="n"><? echo _('Password'); ?>:</td>
+	   <td class="n"><?php echo _('Password'); ?>:</td>
 	   <td class="n"><input type="password" class="input" name="password"></td>
 	  </tr>
 	  <tr>
 	   <td class="n">&nbsp;</td>
 	   <td class="n">
-	    <input type="submit" name="authenticate" class="button" value=" <? echo _('Login'); ?> ">
+	    <input type="submit" name="authenticate" class="button" value=" <?php echo _('Login'); ?> ">
 	   </td>
 	  </tr>
 	 </table>
 	</form>
-	<?
+	<?php
 	include_once('inc/footer.inc.php');
 	exit;
 }