2019-07-17 20:08:50 +00:00
|
|
|
<div class="formGrid">
|
|
|
|
<div class="yui-gf">
|
|
|
|
<div class="yui-u first">
|
2019-07-17 20:16:19 +00:00
|
|
|
<?php echo $this->translate('Username') ?>:
|
2019-07-17 20:08:50 +00:00
|
|
|
</div>
|
|
|
|
<div class="yui-u">
|
2019-07-17 20:16:19 +00:00
|
|
|
<?php echo $this->targetUser->username ?>
|
2019-07-17 20:08:50 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="yui-gf">
|
|
|
|
<div class="yui-u first">
|
2019-07-17 20:16:19 +00:00
|
|
|
<?php echo $this->translate('Name') ?>:
|
2019-07-17 20:08:50 +00:00
|
|
|
</div>
|
|
|
|
<div class="yui-u">
|
2019-07-17 20:16:19 +00:00
|
|
|
<?php echo $this->targetUser->getfullName() ?>
|
2019-07-17 20:08:50 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="yui-gf">
|
|
|
|
<div class="yui-u first">
|
2019-07-17 20:16:19 +00:00
|
|
|
<?php echo $this->translate('E-mail') ?>:
|
2019-07-17 20:08:50 +00:00
|
|
|
</div>
|
|
|
|
<div class="yui-u">
|
2019-07-17 20:16:19 +00:00
|
|
|
<?php echo $this->targetUser->email ?>
|
2019-07-17 20:08:50 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="yui-gf">
|
|
|
|
<div class="yui-u first">
|
2019-07-17 20:16:19 +00:00
|
|
|
<?php echo $this->translate('OpenID') ?>:
|
2019-07-17 20:08:50 +00:00
|
|
|
</div>
|
|
|
|
<div class="yui-u">
|
2019-07-17 20:16:19 +00:00
|
|
|
<?php echo $this->targetUser->openid ?>
|
2019-07-17 20:08:50 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-07-17 20:31:04 +00:00
|
|
|
<? if ($this->yubikey->enabled && !$this->yubikey->force): ?>
|
|
|
|
<div class="yui-gf">
|
|
|
|
<div class="yui-u first">
|
|
|
|
<?php echo $this->translate('Auth Method') ?>:
|
|
|
|
</div>
|
|
|
|
<div class="yui-u">
|
|
|
|
<? if ($this->targetUser->auth_type == Users_Model_User::AUTH_PASSWORD): ?>
|
|
|
|
<?= $this->translate('Password') ?>
|
|
|
|
<? else: ?>
|
|
|
|
YubiKey
|
|
|
|
<? endif ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<? endif ?>
|
2019-07-17 20:08:50 +00:00
|
|
|
</div>
|