29 lines
1.1 KiB
PHTML
29 lines
1.1 KiB
PHTML
<script>
|
|
YAHOO.util.Event.onDOMReady(function () {
|
|
COMMID.loader.insert(
|
|
// "connection" is required by COMMID.personalInfo.edit()
|
|
["connection"],
|
|
null
|
|
);
|
|
});
|
|
</script>
|
|
<div id="article">
|
|
<div id="generalTab" class="dataSection">
|
|
<div class="formHeader">
|
|
<h2><?php echo $this->translate('Personal Info') ?></h2>
|
|
<div>
|
|
<a href="javascript:void(0);" onclick="COMMID.personalInfo.edit();">
|
|
<?php echo $this->translate('Edit') ?>
|
|
</a>
|
|
<img id="loadingEditPersonalInfo" src="<?php echo $this->base ?>/images/progress.gif" style="visibility:hidden" />
|
|
</div>
|
|
</div>
|
|
<div style="margin:10px 0">
|
|
<em><?php echo $this->translate('This information will be used to automatically populate registration fields to any OpenID transaction that requires so') ?></em>
|
|
</div>
|
|
<div id="personalInfo">
|
|
<?php echo $this->action('show', 'personalinfo', 'users', array('userid' => $this->targetUser->id)) ?>
|
|
</div>
|
|
</div>
|
|
</div>
|