Minor - format code.

1.9.x
Julio Montoya 11 years ago
parent 7a48d2c734
commit 63b85dab15
  1. 50
      custompages/index-unlogged.php

@ -78,30 +78,34 @@ $rootWeb = api_get_path('WEB_PATH');
<img src="<?php echo api_get_path(WEB_PATH)?>/custompages/images/header.png" alt="Logo" /> <img src="<?php echo api_get_path(WEB_PATH)?>/custompages/images/header.png" alt="Logo" />
</div> <!-- #header --> </div> <!-- #header -->
<div id="login-form-box" class="form-box"> <div id="login-form-box" class="form-box">
<div id="login-form-info" class="form-info"> <div id="login-form-info" class="form-info">
<?php if (isset($content['info']) && !empty($content['info'])) { <?php if (isset($content['info']) && !empty($content['info'])) {
echo $content['info']; echo $content['info'];
} }
?> ?>
</div> </div>
<?php if (isset($error_message)) { <?php if (isset($error_message)) {
echo '<div id="login-form-info" class="form-error">'.$error_message.'</div>'; echo '<div id="login-form-info" class="form-error">'.$error_message.'</div>';
} }
?> ?>
<form id="login-form" class="form" action="<?php echo api_get_path(WEB_PATH)?>index.php" method="post"> <form id="login-form" class="form" action="<?php echo api_get_path(WEB_PATH)?>index.php" method="post">
<div> <div>
<label for="login">*<?php echo custompages_get_lang('User');?></label> <label for="login">*<?php echo custompages_get_lang('User');?></label>
<input name="login" type="text" /><br /> <input name="login" type="text" /><br />
<label for="password">*<?php echo custompages_get_lang('langPass');?></label> <label for="password">*<?php echo custompages_get_lang('langPass');?></label>
<input name="password" type="password" /><br /> <input name="password" type="password" /><br />
</div> </div>
</form> </form>
<div id="login-form-submit" class="form-submit" onclick="document.forms['login-form'].submit();"> <div id="login-form-submit" class="form-submit" onclick="document.forms['login-form'].submit();">
<span><?php echo custompages_get_lang('LoginEnter');?></span> <span><?php echo custompages_get_lang('LoginEnter');?></span>
</div> <!-- #form-submit --> </div> <!-- #form-submit -->
<div id="links"> <div id="links">
<a href="<?php echo api_get_path(WEB_PATH)?>main/auth/inscription.php"><?php echo custompages_get_lang('langReg')?></a><br /> <a href="<?php echo api_get_path(WEB_PATH)?>main/auth/inscription.php">
<a href="<?php echo api_get_path(WEB_PATH)?>main/auth/lostPassword.php"><?php echo custompages_get_lang('langLostPassword')?></a> <?php echo custompages_get_lang('langReg')?>
</a><br />
<a href="<?php echo api_get_path(WEB_PATH)?>main/auth/lostPassword.php">
<?php echo custompages_get_lang('langLostPassword')?>
</a>
</div> </div>
</div> <!-- #form --> </div> <!-- #form -->
<div id="footer"> <div id="footer">

Loading…
Cancel
Save