86 lines
1.9 KiB
PHP
86 lines
1.9 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* The edit view file of account module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
|
|
* @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author Ke Zhao<zhaoke@easycorp.ltd>
|
|
* @package account
|
|
* @link https://www.zentao.net
|
|
*/
|
|
|
|
namespace zin;
|
|
|
|
formPanel
|
|
(
|
|
set::id('accountCreateForm'),
|
|
set::title($lang->account->edit),
|
|
formRow
|
|
(
|
|
formGroup
|
|
(
|
|
set::name('name'),
|
|
set::label($lang->account->name),
|
|
set::value($account->name),
|
|
)
|
|
),
|
|
formRow
|
|
(
|
|
formGroup
|
|
(
|
|
set::width('1/2'),
|
|
set::label($lang->account->provider),
|
|
set::control('picker'),
|
|
set::name('provider'),
|
|
set::items($lang->serverroom->providerList),
|
|
set::value($account->provider)
|
|
)
|
|
),
|
|
formRow
|
|
(
|
|
formGroup
|
|
(
|
|
set::name('adminURI'),
|
|
set::label($lang->account->adminURI),
|
|
set::value($account->adminURI),
|
|
)
|
|
),
|
|
formRow
|
|
(
|
|
formGroup
|
|
(
|
|
set::name('account'),
|
|
set::label($lang->account->account),
|
|
set::value($account->account),
|
|
)
|
|
),
|
|
formRow
|
|
(
|
|
formGroup
|
|
(
|
|
set::name('password'),
|
|
set::label($lang->account->password),
|
|
set::value($account->password),
|
|
)
|
|
),
|
|
formRow
|
|
(
|
|
formGroup
|
|
(
|
|
set::name('email'),
|
|
set::label($lang->account->email),
|
|
set::value($account->email),
|
|
)
|
|
),
|
|
formRow
|
|
(
|
|
formGroup
|
|
(
|
|
set::name('mobile'),
|
|
set::label($lang->account->mobile),
|
|
set::value($account->mobile),
|
|
)
|
|
),
|
|
);
|