xxb/module/user/view/changeavatar.html.php
2023-10-23 15:51:36 +08:00

22 lines
1.1 KiB
PHP

<?php
/**
* The avatar change view file of user module of XXB.
*
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd., www.zentao.net)
* @license ZOSL (https://zpl.pub/page/zoslv1.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package user
* @version $Id: profile.html.php 4029 2016-08-26 06:50:41Z liugang $
* @link https://xuanim.com
*/
?>
<?php include '../../common/view/header.lite.html.php';?>
<div class='panel-body'>
<div class='avatar avatar-lg mgb-10'><?php if(!empty($user->avatar)) echo html::image($user->avatar . '?v=' . rand(), "class='avatar-img'");?></div>
<form method='post' action="<?php echo inlink('uploadAvatar', "lite=true");?>" class='form-condensed text-center' id='avatarForm' enctype='multipart/form-data' class='hide'>
<?php echo html::file('files', "class='form-control file-control'");?>
<?php echo html::a('javascript:;', $lang->user->uploadAvatar, "class='btn btn-avatar submit'");?>
</form>
</div>
<?php include '../../common/view/footer.html.php';?>