Files
CRM/layouts/v7/modules/Install/Step1.tpl
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

57 lines
2.1 KiB
Smarty

{*+**********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.1
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
************************************************************************************}
<div class="row main-container">
<div class="inner-container">
<div class="row">
<div class="col-sm-10">
<h4>{vtranslate('LBL_WELCOME', 'Install')}</h4>
</div>
<div class="col-sm-2">
<a href="https://wiki.vtiger.com/vtiger6/" target="_blank" class="pull-right">
<img src="{'help.png'|vimage_path}" alt="Help-Icon"/>
</a>
</div>
</div>
<hr>
<form class="form-horizontal" name="step1" method="post" action="index.php">
<input type=hidden name="module" value="Install" />
<input type=hidden name="view" value="Index" />
<input type=hidden name="mode" value="Step2" />
<div class="row">
<div class="col-sm-4 welcome-image">
<img src="{'wizard_screen.png'|vimage_path}" alt="Vtiger Logo"/>
</div>
<div class="col-sm-8">
<div class="welcome-div">
<h3>{vtranslate('LBL_WELCOME_TO_VTIGER7_SETUP_WIZARD', 'Install')}</h3>
{vtranslate('LBL_VTIGER7_SETUP_WIZARD_DESCRIPTION','Install')}
</div>
{if $LANGUAGES|@count > 1}
<div>
<span>{vtranslate('LBL_CHOOSE_LANGUAGE', 'Install')}
<select name="lang" id="lang">
{foreach key=header item=language from=$LANGUAGES}
<option value="{$header}" {if $header eq $CURRENT_LANGUAGE}selected{/if}>{vtranslate("$language",'Install')}</option>
{/foreach}
</select>
</span>
</div>
{/if}
</div>
</div>
<div class="row">
<div class="button-container col-sm-12">
<input type="submit" class="btn btn-large btn-primary pull-right" value="{vtranslate('LBL_INSTALL_BUTTON','Install')}"/>
</div>
</div>
</form>
</div>
</div>