Show login_form.tpl.html syntax highlighted
<?php include 'includes/astrum_frontend_header.tpl.html'; ?>
<?php include 'includes/astrum_frontend_leftcolumn.tpl.html'; ?>
<div id="astrum_content_container">
<h1 id="astrum_content_title">Login</h1>
<?php if($this->authenticated == 1): ?>
<p>
<strong>You are already logged in!</strong>
</p>
<?php else: ?>
<div class="astrum_form_narrow_holder">
<form id="astrum_form_login" action="<?php echo $this->URLROOT ?>/login" method="post" accept-charset="utf8">
<div>
<span>Username:</span>
<span><input type="text" name="astrum_form_login_user" value="" /></span>
</div>
<div>
<span>Password:</span>
<span><input type="password" name="astrum_form_login_pass" value="" /></span>
</div>
<div>
<span></span>
<span><input type="submit" name="astrum_form_login_submit" value="Submit" /></span>
</div>
</form>
</div>
<?php endif; ?>
</div><!--EOF:astrum_content_container-->
<!--TODO:astrum_content_right-->
<?php include 'includes/astrum_frontend_footer.tpl.html'; ?>
See more files for this project here