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

15 lines
510 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('This Community-ID instance hasn\'t been installed yet') ?>
2019-07-17 20:08:50 +00:00
</h3>
<div style="margin-top:20px">
2019-07-17 20:16:19 +00:00
<input type="button" id="start" value="<?php echo $this->translate('Proceed with installation')?>" />
2019-07-17 20:08:50 +00:00
<script type="text/javascript">
var oButton = new YAHOO.widget.Button(
"start",
{
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>