CommunityID/modules/install/views/scripts/permissions/index.phtml

20 lines
651 B
PHTML
Raw Normal View History

2019-07-17 20:08:50 +00:00
<h3>
2019-07-17 20:16:19 +00:00
<?php echo $this->translate('Please correct the following problems before proceeding:') ?>
2019-07-17 20:08:50 +00:00
</h3>
<ul>
2019-07-17 20:16:19 +00:00
<?php foreach ($this->errors as $error): ?>
<li style="list-style-type:circle"><?php echo $error ?></li>
<?php endforeach ?>
2019-07-17 20:08:50 +00:00
</ul>
<div style="margin-top:20px">
2019-07-17 20:16:19 +00:00
<input type="button" id="check" value="<?php echo $this->translate('Check again')?>" />
2019-07-17 20:08:50 +00:00
<script type="text/javascript">
var oButton = new YAHOO.widget.Button(
"check",
{
2019-07-17 20:16:19 +00:00
onclick: {fn: function() {location.href="<?php echo $this->base ?>/install/credentials"}}
2019-07-17 20:08:50 +00:00
}
);
</script>
</div>