Translate log in and log out

This commit is contained in:
coolneng 2020-07-14 00:27:15 +02:00
parent 77a4a5987e
commit b9bf92ea55
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
3 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@
selectHelper: true,
select: function(start, end, allDay) {
select: function(start, end) {
$("#dialog-form").dialog({ modal: true, width:450});
var date = $.fullCalendar.formatDate(start, 'YYYY-MM-DD');
$("#fecha").val(date);

View File

@ -13,9 +13,9 @@
<li class="list"><a href="report.php">Informes</a></li>
<?php endif; ?>
<?php if (isset($_SESSION["user"])): ?>
<li class="list"><a href="user_management.php?logout=1">Log out</a></li>
<li class="list"><a href="user_management.php?logout=1">Cerrar sesión</a></li>
<?php else: ?>
<li class="list"><a href="login.php">Login</a></li>
<li class="list"><a href="login.php">Iniciar sesión</a></li>
<?php endif; ?>
</ul>
</nav>

View File

@ -81,7 +81,7 @@ form {
.edit_btn {
text-decoration: none;
padding: 2px 5px;
background: #2E8B57;
background: #0d841f;
color: white;
border-radius: 3px;
}