Update v1.0.6.5

This commit is contained in:
sujitprasad
2016-03-02 12:25:21 +05:30
parent 7011553462
commit c56ff86194
218 changed files with 17161 additions and 2358 deletions

View File

@@ -1,7 +1,9 @@
@extends('themes.default1.installer.layout.installer')
@section('serial')
active
@stop
@section('content')
<div class="wc-setup-content" ng-app="myApp">
<h1 style="text-align: center;">Faveo HELPDESK Serial Key</h1>
@@ -42,7 +44,7 @@ active
</td>
<td style="">
{!! $errors->first('order_no', '<spam class="help-block">:message</spam>') !!}
<input type="text" name="order_no" style="margin-left:180px;width:274px;" value="010451236">
<input type="text" name="order_no" style="margin-left:180px;width:274px;" value="">
<br/><br/>
</td>
</tr>

View File

@@ -14,7 +14,10 @@ active
@section('content')
<div ng-app="myApp">
@if(Session::has('fails'))
<h1 style="text-align: center;">Database Setup</h1>
<p class="wc-setup-content">Below you should enter your database connection details. If youre not sure about these, contact your host.</p>
@if(Session::has('fails'))
<div class="wc-setup-content">
<div class="woocommerce-message woocommerce-tracker">
<div class="fail">
@@ -23,10 +26,23 @@ active
</div>
</div>
@endif
<h1 style="text-align: center;">Database Setup</h1>
<p class="wc-setup-content">Below you should enter your database connection details. If youre not sure about these, contact your host.</p>
@if($errors->has('default') || $errors->has('host') || $errors->has('port') || $errors->has('databasename') || $errors->has('username') || $errors->has('password'))
<div class="wc-setup-content">
<div class="woocommerce-message woocommerce-tracker">
<div class="fail">
{!! $errors->first('default', '<spam id="fail">:message</spam><br/>') !!}
{!! $errors->first('host', '<spam id="fail">:message</spam><br/>') !!}
{!! $errors->first('port', '<spam id="fail">:message</spam><br/>') !!}
{!! $errors->first('databasename', '<spam id="fail">:message</spam><br/>') !!}
{!! $errors->first('username', '<spam id="fail">:message</spam><br/>') !!}
{!! $errors->first('password', '<spam id="fail">:message</spam><br/>') !!}
<br/>
</div>
</div>
</div>
@endif
{!! Form::open(['url'=> '/step4post']) !!}
<table ng-controller="MainController">
@@ -40,8 +56,6 @@ active
<div>
<select name="default" data-placeholder="Choose a SQL format..." class="chosen-select" style="width:290px;" tabindex="2">
<option value="mysql">MySQL</option>
<option value="pgsql">PgSQL</option>
<option value="sqlsrv">SQLSRV</option>
</select>
</div>
</div>
@@ -57,7 +71,7 @@ active
: red;font-size:12px;">*</span></label>
</td>
<td>
<input type="text" name="host" required>
<input type="text" name="host">
</td>
<td>
<button type="button" data-toggle="popover" data-placement="right" data-arrowcolor="#eeeeee" data-bordercolor="#bbbbbb" data-title-backcolor="#cccccc" data-title-bordercolor="#bbbbbb" data-title-textcolor="#444444" data-content-backcolor="#eeeeee" data-content-textcolor="#888888" title="@{{Hosttitle}}" data-content="@{{Hostcontent}}" style="padding: 0px;border: 0px; border-radius: 5px;"><i class="fa fa-question-circle" style="padding: 0px;"></i>
@@ -69,7 +83,7 @@ active
<label for="box2">Port</label>
</td>
<td>
<input type="text" name="port">
<input type="number" name="port">
</td>
<td>
<button type="button" data-toggle="popover" data-placement="right" data-arrowcolor="#eeeeee" data-bordercolor="#bbbbbb" data-title-backcolor="#cccccc" data-title-bordercolor="#bbbbbb" data-title-textcolor="#444444" data-content-backcolor="#eeeeee" data-content-textcolor="#888888" title="@{{Porttitle}}" data-content="@{{Portcontent}}" style="padding: 0px;border: 0px; border-radius: 5px;"><i class="fa fa-question-circle" style="padding: 0px;"></i>
@@ -82,7 +96,7 @@ active
: red;font-size:12px;">*</span></label>
</td>
<td>
<input type="text" name="databasename" required>
<input type="text" name="databasename">
</td>
<td>
<button type="button" data-toggle="popover" data-placement="right" data-arrowcolor="#eeeeee" data-bordercolor="#bbbbbb" data-title-backcolor="#cccccc" data-title-bordercolor="#bbbbbb" data-title-textcolor="#444444" data-content-backcolor="#eeeeee" data-content-textcolor="#888888" title="@{{Databasenametitle}}" data-content="@{{Databasenamecontent}}" style="padding: 0px;border: 0px; border-radius: 5px;"><i class="fa fa-question-circle" style="padding: 0px;"></i>
@@ -95,7 +109,7 @@ active
: red; font-size: 12px;">*</span></label>
</td>
<td>
<input type="text" name="username" required>
<input type="text" name="username">
</td>
<td>
<button type="button" data-toggle="popover" data-placement="right" data-arrowcolor="#eeeeee" data-bordercolor="#bbbbbb" data-title-backcolor="#cccccc" data-title-bordercolor="#bbbbbb" data-title-textcolor="#444444" data-content-backcolor="#eeeeee" data-content-textcolor="#888888" title="@{{Usertitle}}" data-content="@{{Usercontent}}" style="padding: 0px;border: 0px; border-radius: 5px;"><i class="fa fa-question-circle" style="padding: 0px;"></i>

View File

@@ -58,13 +58,10 @@ active
@endif
<div ng-controller="MainController">
<table>
<table>
<p>Welcome to the five-minute Faveo installation process! Just fill in the information below.</p>
<h1 style="border-top:1px solid #dedede; border-bottom:1px solid #dedede; padding: 10px 0px 10px 0px;">Personal Information</h1>
<p>Please provide the following information. Dont worry, you can always change these settings later.</p>
<div>
<tr>
<td>
@@ -107,9 +104,7 @@ active
</tr>
</div>
</table>
<table>
<h1>Login Information</h1>
<div>
@@ -338,7 +333,7 @@ active
<br>
<p class="wc-setup-actions step">
<input type="submit" id="submitme" class="button-primary button button-large button-next" value="Install">
<a href="step4.html" class="button button-large button-next" style="float: left">Previous</a>
<a href="{{url('step4')}}" class="button button-large button-next" style="float: left">Previous</a>
</p>
</form>
</div>