PageRenderTime 33ms CodeModel.GetById 25ms app.highlight 5ms RepoModel.GetById 1ms app.codeStats 0ms

/application/views/scripts/installer/tables.phtml

https://bitbucket.org/hamidrezas/melobit
Unknown | 33 lines | 30 code | 3 blank | 0 comment | 0 complexity | 85ee24fa37d75bce2e4faceec7dd4b47 MD5 | raw file
Possible License(s): AGPL-1.0
 1<h3>Welcome to Melobit Installation</h3>
 2<hr />
 3<h4>[Step 3]</h4>
 4<?php
 5 if ($this->error == null) 
 6 {
 7 	echo '<p>Congradulation! Your tables successfully was created:</p>';
 8 	echo '<ul>';
 9 	foreach ($this->listTables as $table)
10 	{
11 		echo '<li>' . $table . '</li>';
12 	}
13 	echo '</ul>';
14 	
15 	echo '<p>To login as administrator use this information:</p>';
16 	echo '<ul>';
17 	echo '<li>Your User: <strong>admin</strong></li>';
18 	echo '<li>Your Password: <strong>admin</strong></li>';
19 	echo '</ul>';
20 	echo '<p><strong>Important:</strong> Because of security reasons, change your password in next step.</p>';
21 	echo '<p><a href="/admin/config">Final Step</a> (Site Configuration)';
22 	
23 	echo '<hr />';
24 	echo '<p><strong>Note: </strong><em>Because of security reasons, InstallerController became hidden. So
25 			if you want to install MeloBit again, you can rename it to be ready for installation.</em></p>';
26 }
27 else
28 {
29 	echo '<p>An error has been occured:</p>';
30 	echo $this->error;
31 }
32?>
33