CommunityID/modules/users/views/scripts/personalinfo/index.phtml

29 lines
1.1 KiB
PHTML
Raw Normal View History

2019-07-17 20:08:50 +00:00
<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">
2019-07-17 20:16:19 +00:00
<h2><?php echo $this->translate('Personal Info') ?></h2>
2019-07-17 20:08:50 +00:00
<div>
<a href="javascript:void(0);" onclick="COMMID.personalInfo.edit();">
2019-07-17 20:16:19 +00:00
<?php echo $this->translate('Edit') ?>
2019-07-17 20:08:50 +00:00
</a>
2019-07-17 20:16:19 +00:00
<img id="loadingEditPersonalInfo" src="<?php echo $this->base ?>/images/progress.gif" style="visibility:hidden" />
2019-07-17 20:08:50 +00:00
</div>
</div>
<div style="margin:10px 0">
2019-07-17 20:16:19 +00:00
<em><?php echo $this->translate('This information will be used to automatically populate registration fields to any OpenID transaction that requires so') ?></em>
2019-07-17 20:08:50 +00:00
</div>
<div id="personalInfo">
2019-07-17 20:16:19 +00:00
<?php echo $this->action('show', 'personalinfo', 'users', array('userid' => $this->targetUser->id)) ?>
2019-07-17 20:08:50 +00:00
</div>
</div>
</div>