-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
34 lines (27 loc) · 948 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
require_once ("Includes/simplecms-config.php");
require_once ("Includes/connectDB.php");
include("Includes/header.php");
?>
<div id="main">
<h3>Get started with your website</h3>
<ol class="round">
<li class="one">
<h5>Login as admin </h5>
The site admin username and password are stored in the config file in the Includes directory.
</li>
<li class="two">
<h5>Customize your site</h5>
After you login, you can add, delete, and modify web pages.
</li>
<li class="asterisk">
<div class="visit">
To learn more about PHP, visit <a href="http://php.net" title="PHP.net Website">http://php.net</a>.
</div>
</li>
</ol>
</div>
</div> <!-- End of outer-wrapper which opens in header.pho -->
<?php
include ("Includes/footer.php");
?>