ALTER TABLE Branch ADD category VARCHAR(255) DEFAULT NULL, ADD worktime_from VARCHAR(255) DEFAULT NULL, ADD worktime_to VARCHAR(255) DEFAULT NULL, ADD skype LONGTEXT DEFAULT NULL;
ALTER TABLE Slider ADD background_color VARCHAR(20) DEFAULT NULL
SELECT t0.id AS id1, t0.title AS title2, t0.address AS address3, t0.phone AS phone4, t0.category AS category5, t0.fax AS fax6, t0.worktime AS worktime7, t0.worktime_from AS worktime_from8, t0.worktime_to AS worktime_to9, t0.city AS city10, t0.email AS email11, t0.gps AS gps12, t0.map_center AS map_center13, t0.skype AS skype14, t0.createdAt AS createdAt15, t0.updatedAt AS updatedAt16 FROM Branch t0
<?$APPLICATION->IncludeComponent("bitrix:system.auth.form", "ic");?>
<?if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();
if ($arResult["FORM_TYPE"] != "login")
{
?>
<div class="nav-profile dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><img src="/uploads/2dskins/<? echo $USER->GetLogin(); ?>.png?show=head" alt=""> <span><? echo $USER->GetLogin(); ?></span></a>
<ul class="dropdown-menu">
<li><a href="/profile"><i class="fa fa-user"></i> Профиль</a></li>
<li class="divider"></li>
<li><a href="/index.php?logout=yes"><i class="fa fa-power-off"></i> Выйти</a></li>
</ul>
</div>
<?
}
else
{
?>
<div class="nav-profile dropdown">
<a href="#signin" data-toggle="modal" class="btn btn-primary btn-sm btn-rounded" data-animation="animated animate6 fadeIn">Войти</a>
</div>
<?
}
?>
<div id="signin" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3 class="modal-title"><i class="fa fa-user"></i>Вход в Industrial Craft</h3>
</div>
<div class="modal-body" style="text-align:center;">
<?
if ($USER->IsAuthorized())
{
echo "Вы успешно авторизованы!<br>";
echo '<div class="separator"></div>';
echo ' <a href="/download.php" class="btn btn-success btn-rounded"><i class="fa fa-gamepad"></i> Скачать лаунчер</a>
';
}
else
{
?>
<a href="/register.php" class="btn btn-primary btn-rounded"><i class="fa fa-sign-in"></i> Регистрация</a>
<a href="/download.php" class="btn btn-success btn-rounded"><i class="fa fa-gamepad"></i> Скачать лаунчер</a>
<div class="separator"></div>
<form name="form_auth" method="post" target="_top" action="/auth.php?login=yes">
<input type="hidden" name="AUTH_FORM" value="Y" />
<input type="hidden" name="TYPE" value="AUTH" />
<?if (strlen($arResult["BACKURL"]) > 0):?>
<input type="hidden" name="backurl" value="<?=$arResult[" BACKURL "]?>" />
<?endif?>
<?
foreach ($arResult["POST"] as $key => $value)
{
?>
<input type="hidden" name="<?=$key?>" value="<?=$value?>" />
<?
}
?>
<div class="form-group input-icon-left">
<i class="fa fa-user"></i>
<input type="text" class="form-control" name="USER_LOGIN" value="<?=$arResult[" LAST_LOGIN "]?>" placeholder="Логин">
</div>
<div class="form-group input-icon-left">
<i class="fa fa-lock"></i>
<input type="password" class="form-control" name="USER_PASSWORD" placeholder="Пароль">
</div>
<input type="submit" class="btn btn-primary btn-block" name="Login" value="Вход" />
<div class="form-actions">
<div class="checkbox">
<input type="checkbox" id="USER_REMEMBER" name="USER_REMEMBER" value="Y">
<label for="USER_REMEMBER">Запомнить меня</label>
</div>
</div>
</form>
<? } ?>
</div>
<? if ($USER->IsAuthorized() == false) {?>
<div class="modal-footer text-left">
Нет аккаунта Industrial Craft? <a href="/register.php">Зарегистрируйтесь</a>
</div>
<?} ?>
</div>
</div>
</div>