blob: d7dbc4d16b4724168ed89692d4d65fd32de837f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<h1> Success! </h1>
<p class="success">
Your Gallery3 install is complete!
</p>
<?php if (!empty($user)): ?>
<h2> Before you start using it... </h2>
<p>
We've created an account for you to use:
<br/>
username: <b><?php print $user ?></b>
<br/>
password: <b><?php print $password ?></b>
<br/>
<br/>
Save this information in a safe place, or change your admin password
right away!
</p>
<?php endif ?>
<h2> <a href="..?after_install=1">Start using Gallery</a> </h2>
|