Fix indentation in in login view
This commit is contained in:
@@ -1,37 +1,41 @@
|
||||
<!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">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
|
||||
<title>ScattPort | Login</title>
|
||||
<title>ScattPort | Login</title>
|
||||
|
||||
<?=link_tag('assets/css/login.css');?>
|
||||
<?=link_tag('assets/css/form.css');?>
|
||||
<?= link_tag('assets/css/login.css'); ?>
|
||||
<?= link_tag('assets/css/form.css'); ?>
|
||||
|
||||
<?=script_tag('assets/js/minmax.js');?>
|
||||
<?=script_tag('https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js');?>
|
||||
<?=script_tag('assets/js/scattport.js');?>
|
||||
<?= script_tag('assets/js/minmax.js'); ?>
|
||||
<?= script_tag('https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js'); ?>
|
||||
<?= script_tag('assets/js/scattport.js'); ?>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="wrapper">
|
||||
<div id="wrapper">
|
||||
|
||||
<div id="box">
|
||||
<div id="box">
|
||||
<h2>Scattport <span class="light">Login</span></h2>
|
||||
|
||||
<p>
|
||||
<?php
|
||||
if (isset($error))
|
||||
foreach($error as $e) echo "<div class=\"error\">".$e."</div>";
|
||||
if (isset($notice))
|
||||
foreach($notice as $n) echo "<div class=\"notice\">".$n."</div>";
|
||||
if (isset($success))
|
||||
foreach($success as $s) echo "<div class=\"success\">".$s."</div>";
|
||||
?>
|
||||
</p>
|
||||
<p>
|
||||
<?php
|
||||
if (isset($error))
|
||||
foreach ($error as $e)
|
||||
echo "<div class=\"error\">" . $e . "</div>";
|
||||
if (isset($notice))
|
||||
foreach ($notice as $n)
|
||||
echo "<div class=\"notice\">" . $n . "</div>";
|
||||
if (isset($success))
|
||||
foreach ($success as $s)
|
||||
echo "<div class=\"success\">" . $s . "</div>";
|
||||
?>
|
||||
</p>
|
||||
|
||||
<form action="<?=site_url('auth/login')?>" method="post" name="loginform">
|
||||
<form action="<?= site_url('auth/login') ?>" method="post" name="loginform">
|
||||
<ul>
|
||||
<li>
|
||||
<label>Benutzername</label>
|
||||
@@ -50,7 +54,7 @@ if (isset($success))
|
||||
</form>
|
||||
|
||||
<p><a href="#">Passwort vergessen?</a></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user