core/api/modules/magazin_edit/index.html

92 lines
5.8 KiB
HTML
Raw Normal View History

2022-12-11 13:55:49 +05:00
{include file=$header_admin h1="Редактировать магазин" title="Редактировать магазин"}
<section class="container">
<button type="button" class="btn btn-outline-dark" data-link="/lk/"><i class="fas fa-chevron-left"></i> Назад</button>
<div class="row">
<div class="col-xs col-sm col-md-4 col-lg-3 col-xl-3 col-xxl-3">
<img src="/api/img/timthumb.php.png" title="Нажмите, чтобы обновить фото" id="ava" data-original="/img/avatars/{$user[0].ava}.jpg" alt="{$user[0].fio}" class="lazy" style="width: 100%;">
<form action="/act/profile_edit" method="post" enctype='multipart/form-data' id="form-upload">
<input type="file" class="hidden" name="file" id="input-file">
<input type="hidden" name="act" value="ava">
</form>
<p class="text-center">{$user[0].fio}</p>
</div>
<div class="col-xs col-sm col-md col-lg col-xl col-xxl">
<h2>Личные данные</h2>
<hr>
<div class="mb-3">
<label class="form-label">Города, где вы осуществляете деятельность</label>
<input type="text" class="form-control update-profile" value="{$user[0].gorod}" data-t="gorod">
<div class="form-text" style="font-size: 10pt;">Заполните, если хотите чтобы вас находили клиенты</div>
</div>
<div class="mb-3">
<label class="form-label">Фамилия, имя, отчество</label>
<input type="text" class="form-control update-profile" value="{$user[0].fio}" data-t="fio">
</div>
<div class="mb-3">
<label class="form-label">Сколько вам лет?</label>
<input type="text" class="form-control update-profile" value="{$user[0].vozrast}" data-t="vozrast">
<div class="form-text" style="font-size: 10pt;">От этого зависит, показывать ли фам фотографии эротического содержания</div>
</div>
<div class="mb-3">
<label class="form-label">Сколько лет вы занимаетесь фотографированием или обработкой?</label>
<input type="text" class="form-control update-profile" value="{$user[0].stazh}" data-t="stazh">
<div class="form-text" style="font-size: 10pt;">Всем важен опыт работы =)</div>
</div>
<div class="mb-3">
<label class="form-label">В каких жанрах предпочитаете работать?</label>
<input type="text" class="form-control update-profile" value="{$user[0].zhanr}" data-t="zhanr">
<!-- div class="form-text" style="font-size: 10pt;">От этого зависит, показывать ли фам фотографии эротического содержания</div -->
</div>
<div class="mb-5">
<label class="form-label">Средняя цена за работу</label>
<input type="text" class="form-control update-profile" value="{$user[0].sr_cena}" data-t="sr_cena">
</div>
<h2>Платежные данные</h2>
<hr>
<img src="/api/img/gray/gif/gray.gif" data-original="/img/logo-sbp.jpg" alt="Система быстых платежей" class="lazy" style="width: 150px;" title="Система быстрых платежей">
<div class="mb-3">
<label class="form-label">Укажите ваш номер телефона в системе быстрых платежей</label>
<input type="text" class="form-control update-profile" value="{$user[0].telsbp}" data-t="telsbp">
<div class="form-text" style="font-size: 10pt;">Этот номер телефона не доступен другим пользователям, используется только для вывода денег</div>
</div>
<div class="mb-5">
<label class="form-label">Желаемый банк</label>
<input type="text" class="form-control update-profile" value="{$user[0].banksbp}" data-t="banksbp">
<div class="form-text" style="font-size: 10pt;">В какой именно банк вам переводить доход?</div>
</div>
<h2>Социальные аккаунты</h2>
<hr>
<div class="mb-3">
<label class="form-label">В контакте</label>
<input type="text" class="form-control update-profile" value="{$user[0].ss_vk}" data-t="ss_vk">
</div>
<div class="mb-3">
<label class="form-label">Инстаграм</label>
<input type="text" class="form-control update-profile" value="{$user[0].ss_ig}" data-t="ss_ig">
</div>
<div class="mb-3">
<label class="form-label">Одноклассники</label>
<input type="text" class="form-control update-profile" value="{$user[0].ss_ok}" data-t="ss_ok">
</div>
<div class="mb-5">
<label class="form-label">Фейсбук</label>
<input type="text" class="form-control update-profile" value="{$user[0].ss_facebook}" data-t="ss_facebook">
</div>
<h2>Сменить пароль:</h2>
<hr>
</div>
</div>
</section>
{include file=$footer_admin}