Fix indentation in in login view
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
|
||||
@@ -23,11 +24,14 @@
|
||||
<p>
|
||||
<?php
|
||||
if (isset($error))
|
||||
foreach($error as $e) echo "<div class=\"error\">".$e."</div>";
|
||||
foreach ($error as $e)
|
||||
echo "<div class=\"error\">" . $e . "</div>";
|
||||
if (isset($notice))
|
||||
foreach($notice as $n) echo "<div class=\"notice\">".$n."</div>";
|
||||
foreach ($notice as $n)
|
||||
echo "<div class=\"notice\">" . $n . "</div>";
|
||||
if (isset($success))
|
||||
foreach($success as $s) echo "<div class=\"success\">".$s."</div>";
|
||||
foreach ($success as $s)
|
||||
echo "<div class=\"success\">" . $s . "</div>";
|
||||
?>
|
||||
</p>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user