Skip to content

Commit

Permalink
fix view
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexon Balangue committed Nov 17, 2016
1 parent 86f91dc commit 745e73d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Boostrap3/modules/mod_login/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</div>
<?php if (count($twofactormethods) > 1): ?>
<div id="form-login-secretkey" class="control-group">
<div id="form-login-secretkey" class="input-group input-group-lg">
<div id="form-login-secretkey" class="input-group btn-group-vertical">
<?php if (!$params->get('usetext')) : ?>
<span class="input-group-addon">
<span class="fa fa-star-o hasTooltip" title="<?php echo JText::_('JGLOBAL_SECRETKEY'); ?>"></span>
Expand Down Expand Up @@ -97,12 +97,12 @@
</div>
<?php
$usersConfig = JComponentHelper::getParams('com_users'); ?>
<div class="btn-group btn-group-vertical btn-group-justified btn-group-lg" role="group" aria-label="members">
<div class="btn-group btn-group-vertical btn-group-justified text-center" role="group" aria-label="members">
<?php if ($usersConfig->get('allowUserRegistration')) : ?>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=registration&Itemid=' . UsersHelperRoute::getRegistrationRoute()); ?>" class="btn btn-default" role="button"><?php echo JText::_('MOD_LOGIN_REGISTER'); ?></a>
<?php endif; ?>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=remind&Itemid=' . UsersHelperRoute::getRemindRoute()); ?>" class="btn btn-default" role="button"><?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_USERNAME'); ?></a>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=reset&Itemid=' . UsersHelperRoute::getResetRoute()); ?>" class="btn btn-default" role="button"><?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_PASSWORD'); ?></a>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=remind&Itemid=' . UsersHelperRoute::getRemindRoute()); ?>" class="btn btn-default"><?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_USERNAME'); ?></a>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=reset&Itemid=' . UsersHelperRoute::getResetRoute()); ?>" class="btn btn-default"><?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_PASSWORD'); ?></a>
</div>
<input type="hidden" name="option" value="com_users" />
<input type="hidden" name="task" value="user.login" />
Expand Down
3 changes: 2 additions & 1 deletion Boostrap3/modules/mod_login/default_logout.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@
<?php else : ?>
<?php echo JText::sprintf('MOD_LOGIN_HINAME', htmlspecialchars($user->get('username'), ENT_COMPAT, 'UTF-8')); ?>
<?php endif; ?>
<a href="<?php echo JURI::base(root); ?>/espace-clientèles.html" class="btn btn-default">Accès à <br>votre espace client.</a>
</div>
<?php endif; ?>
<div class="form-group">
<input type="submit" name="Submit" class="btn btn-danger" value="<?php echo JText::_('JLOGOUT'); ?>" />
<input type="submit" name="Submit" class="btn btn-lg btn-danger" value="<?php echo JText::_('JLOGOUT'); ?>" />
<input type="hidden" name="option" value="com_users" />
<input type="hidden" name="task" value="user.logout" />
<input type="hidden" name="return" value="<?php echo $return; ?>" />
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion Boostrap3/modules/mod_tags_popular/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<?php echo htmlspecialchars($item->title, ENT_COMPAT, 'UTF-8'); ?></a>
<?php if ($display_count) : ?>
<span class=" badge"><?php echo $item->count; ?></span>
<?php endif; ?>&nbsp; - &nbsp;
<?php endif; ?> -
<?php endforeach; ?>
<?php endif; ?>
</div>
1 change: 1 addition & 0 deletions Boostrap3/modules/mod_tags_popular/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!DOCTYPE html><html><body></body></html>

0 comments on commit 745e73d

Please sign in to comment.