<div id="alw-login">
	<section class="login-section">
		<?php echo $this->showVendorLogo($this->request);?>
		<br>
		<form method="post" action="/login/authenticate"  accept-charset="UTF-8" method="post" id="userlogin-login-form" class="clearfix">
			<?php if ($this->err_message != '') { ?>
				<div class="alert alert-danger"><?php echo $this->err_message; ?></div>
			<?php } ?>
			<?php if (isset($this->logout_message) && $this->logout_message != '') { ?>
				<div class="alert alert-success"><?php echo $this->logout_message; ?></div>
			<?php } ?>
			<div class="form-item form-group" id="edit-username-wrapper">
				<label for="edit-username"><?php echo $this->translate('Username');?> <span class="form-required" title="<?php echo $this->translate('This field is required')?>."></span></label>
				<input type="text" maxlength="128" name="username" id="edit-username" size="60" value="" class="form-text required form-control" />
			</div>
			<input type="hidden" name="ref" id="edit-ref" value="<?php echo $this->ref; ?>"  />
			<div class="form-item form-group" id="edit-password-wrapper">
				<label for="edit-password"><?php echo $this->translate('Password') ?> <span class="form-required" title="<?php echo $this->translate('This field is required') ?>."></span></label>
				<input type="password" name="password" id="edit-password"  maxlength="128"  size="60"  class="form-text required form-control" />
			</div>
				
			<p class="text-right"><a href="/login/forgotlogin"><?php echo $this->translate('Forgot your Username or Password');?>?</a></p>
			<input type="submit" name="op" id="edit-submit" value="Log In"  class="btn btn-primary pull-right login-button" />
		</form>
	</section>
</div>
