// Improve installer

This commit is contained in:
rMalie
2012-02-08 08:39:14 +00:00
parent 6c20d6a10e
commit 4cd227e49b
7 changed files with 19 additions and 26 deletions
+1
View File
@@ -571,6 +571,7 @@ ul#optional {
-webkit-border-radius:5px;
border-radius: 5px;
box-shadow:0 1px #d9d9d9;
cursor: pointer;
}
.blockInfoEnd.last {margin-right:0;}
.blockInfoEnd p {
+2 -2
View File
@@ -55,7 +55,7 @@ var default_iso = '<?php echo $this->session->shop_country ?>';
<label for="infosCountry" class="aligned"><?php echo $this->l('Default country:') ?></label>
<div class="contentinput">
<select name="shop_country" id="infosCountry">
<option value="0">-- <?php echo $this->l('Select your country') ?> --</option>
<option value="0">-- <?php echo $this->l('Select your country --') ?></option>
<?php foreach ($this->language->getCountries() as $iso => $country_name): ?>
<option value="<?php echo $iso ?>" <?php if ($this->session->shop_country == $iso): ?>selected="selected"<?php endif; ?>><?php echo $country_name ?></option>
<?php endforeach; ?>
@@ -70,7 +70,7 @@ var default_iso = '<?php echo $this->session->shop_country ?>';
<label for="infosTimezone" class="aligned"><?php echo $this->l('Shop timezone:') ?></label>
<div class="contentinput">
<select name="shop_timezone" id="infosTimezone">
<option value="0">-- <?php echo $this->l('Select your timezone') ?> --</option>
<option value="0"><?php echo $this->l('-- Select your timezone --') ?></option>
<?php foreach ($this->getTimezones() as $timezone): ?>
<option value="<?php echo $timezone ?>" <?php if ($this->session->shop_timezone == $timezone): ?>selected="selected"<?php endif; ?>><?php echo $timezone ?></option>
<?php endforeach; ?>
+8 -16
View File
@@ -36,36 +36,28 @@ var process_percent = <?php echo 100 / count($this->process_steps) ?>;
<div id="install_process_success">
<div class="clearfix">
<h2><?php echo $this->l('Your installation is finished!'); ?></h2>
<p><?php echo $this->l('You have just installed and configured PrestaShop as your online shop. We wish you all the best with the success of your online shop.'); ?></p>
<p><?php echo $this->l('Here is your shop information. You can modify it once you are logged in.') ?></p>
<p><?php echo $this->l('You have just finished to install and configure your shop, thank you for using PrestaShop!'); ?></p>
<p><?php echo $this->l('Please remember your login information:') ?></p>
<table cellpadding="0" cellspacing="0" border="0" id="resultInstall" width="620">
<tr class="odd">
<td style="width: 220px" class="label"><?php echo $this->l('Shop name:') ?></td>
<td style="width: 400px" class="resultEnd"><?php echo htmlspecialchars($this->session->shop_name) ?></td>
</tr>
<tr>
<td class="label"><?php echo $this->l('First name:') ?></td>
<td class="resultEnd"><?php echo htmlspecialchars($this->session->admin_firstname) ?></td>
</tr>
<tr class="odd">
<td class="label"><?php echo $this->l('Last name:') ?></td>
<td class="resultEnd"><?php echo htmlspecialchars($this->session->admin_lastname) ?></td>
</tr>
<tr>
<td class="label"><?php echo $this->l('E-mail:') ?></td>
<td class="resultEnd"><?php echo htmlspecialchars($this->session->admin_email) ?></td>
</tr>
<tr>
<td class="label"><?php echo $this->l('Password:') ?></td>
<td class="resultEnd"><?php echo htmlspecialchars($this->session->admin_password) ?></td>
</tr>
</table>
<h3 class="infosBlock"><?php echo $this->l('WARNING: For security purposes, you must delete the "install" folder.') ?></h3>
<div id="boBlock" class="blockInfoEnd clearfix">
<div id="boBlock" class="blockInfoEnd clearfix" onclick="window.open('../admin')">
<img src="theme/img/visu_boBlock.png" alt="" />
<h3><?php echo $this->l('Back Office'); ?></h3>
<p class="description"><?php echo $this->l('Manage your store using your Back Office. Manage your orders and customers, add modules, change themes, etc.') ?></p>
<a href="../admin" class="BO" target="_blank"><span><?php echo $this->l('Manage your store') ?></span></a>
</div>
<div id="foBlock" class="blockInfoEnd last clearfix">
<div id="foBlock" class="blockInfoEnd last clearfix" onclick="window.open('../')" />
<img src="theme/img/visu_foBlock.png" alt="" />
<h3><?php echo $this->l('Front Office'); ?></h3>
<p class="description"><?php echo $this->l('Discover your store as your future customers will see it!') ?></p>