36 lines
1.5 KiB
PHTML
36 lines
1.5 KiB
PHTML
<form name="accountInfoForm" class="formGrid">
|
|
<?php echo $this->accountInfoForm->username ?>
|
|
<?php echo $this->accountInfoForm->firstname ?>
|
|
<?php echo $this->accountInfoForm->lastname ?>
|
|
<?php echo $this->accountInfoForm->email ?>
|
|
<?php if (!$this->targetUser->id) {
|
|
echo $this->accountInfoForm->password1;
|
|
echo $this->accountInfoForm->password2;
|
|
} ?>
|
|
<div class="yui-gf">
|
|
<div class="yui-u first"> </div>
|
|
<div class="yui-u">
|
|
<input type="button" id="save" value="<?php echo $this->translate('Save') ?>" onclick="COMMID.editAccountInfo.save()" />
|
|
<input type="button" id="cancel" value="<?php echo $this->translate('Cancel') ?>" onclick="COMMID.editAccountInfo.cancel()" />
|
|
<script type="text/javascript">
|
|
YAHOO.util.Event.onDOMReady(function () {
|
|
new YAHOO.widget.Button(
|
|
"save",
|
|
{
|
|
type : "push",
|
|
onclick : {fn: function() {COMMID.editAccountInfo.save()}}
|
|
}
|
|
);
|
|
new YAHOO.widget.Button(
|
|
"cancel",
|
|
{
|
|
type : "push",
|
|
onclick : {fn: function() {COMMID.editAccountInfo.cancel()}}
|
|
}
|
|
);
|
|
});
|
|
</script>
|
|
</div>
|
|
</div>
|
|
</form>
|