Homeparty online, Cron SEPA
This commit is contained in:
parent
13fb2cfe98
commit
36872100c6
41 changed files with 1140 additions and 189 deletions
|
|
@ -74,7 +74,7 @@
|
|||
</ul>
|
||||
</li>
|
||||
@endif
|
||||
@if(Auth::user()->isActiveAccount() && Auth::user()->isSySAdmin())
|
||||
@if(Auth::user()->isActiveAccount() && \App\Services\Util::checkUserLandIsNot(Auth::user()))
|
||||
<li class="sidenav-item @if(Request::is('user/orders', 'user/order/*')) open @endif">
|
||||
<a href="javascript:void(0)" class="sidenav-link sidenav-toggle">
|
||||
<i class="sidenav-icon ion ion-ios-cart"></i>
|
||||
|
|
@ -90,7 +90,7 @@
|
|||
</ul>
|
||||
</li>
|
||||
@endif
|
||||
@if(Auth::user()->isActiveAccount() && Auth::user()->isSySAdmin())
|
||||
@if(Auth::user()->isActiveAccount() && \App\Services\Util::checkUserLandIsNot(Auth::user()))
|
||||
<li class="sidenav-item @if(Request::is('user/homepartys', 'user/homeparty/*')) open @endif">
|
||||
<a href="javascript:void(0)" class="sidenav-link sidenav-toggle">
|
||||
<i class="sidenav-icon ion ion-ios-pizza"></i>
|
||||
|
|
@ -213,6 +213,9 @@
|
|||
<div>Tools</div>
|
||||
</a>
|
||||
<ul class="sidenav-menu">
|
||||
<li class="sidenav-item{{ Request::is('sysadmin/sales/members') ? ' active' : '' }}">
|
||||
<a href="{{ route('sysadmin_sales_members') }}" class="sidenav-link"><i class="sidenav-icon ion ion-ios-people"></i><div>Buchnungen Berater</div></a>
|
||||
</li>
|
||||
<li class="sidenav-item{{ Request::is('sysadmin/tools/customers') ? ' active' : '' }}">
|
||||
<a href="{{ route('sysadmin_tools_customers') }}" class="sidenav-link"><i class="sidenav-icon ion ion-md-contact"></i><div>Kunden</div></a>
|
||||
</li>
|
||||
|
|
|
|||
|
|
@ -46,8 +46,7 @@
|
|||
Herr Alois Ried<br>
|
||||
Leinfeld 2<br>
|
||||
87755 Kirchhaslach<br>
|
||||
Telefon: +49 (0) 8333 946 98 90<br>
|
||||
Fax: +49 (0) 8333 7268<br>
|
||||
Telefon: +49 (0) 8333 946 17 67<br>
|
||||
Mail: info@mivita.care<br>
|
||||
<br><br>
|
||||
<strong>III. Cookies</strong>
|
||||
|
|
|
|||
|
|
@ -10,8 +10,7 @@
|
|||
<p><strong>mivita e.K.</strong><br>
|
||||
Leinfeld 2<br>
|
||||
87755 Kirchhaslach<br>
|
||||
Telefon: +49 (0) 8333 946 98 90<br>
|
||||
Fax: +49 (0) 8333 7268<br>
|
||||
Telefon: +49 (0) 8333 946 17 67<br>
|
||||
E-Mail: info@mivita.care<br></p>
|
||||
|
||||
<p><strong>Geschäftsinhaber:</strong><br> Alois Ried<br><br>
|
||||
|
|
@ -23,7 +22,7 @@
|
|||
<strong>USt-ID-Nr.:</strong><br> DE 244162340<br></p>
|
||||
<br>
|
||||
<p><strong>Support mivita:</strong><br>
|
||||
Telefon: +49 (0) 8333 946 98 90<br>
|
||||
Telefon: +49 (0) 8333 946 17 67<br>
|
||||
E-Mail:: <a href="mailto:info@mivita.care">info@mivita.care</a></p>
|
||||
|
||||
<br>
|
||||
|
|
|
|||
65
resources/views/sys/sales/index.blade.php
Executable file
65
resources/views/sys/sales/index.blade.php
Executable file
|
|
@ -0,0 +1,65 @@
|
|||
@extends('layouts.layout-2')
|
||||
|
||||
@section('content')
|
||||
<div class="card">
|
||||
<h6 class="card-header">
|
||||
Berater Bestellungen
|
||||
</h6>
|
||||
<div class="col-sm-6 mb-2">
|
||||
{!! Form::open(['url' => route('sysadmin_sales_members'), 'class' => 'form-horizontal', 'id'=>'filter_sales_member']) !!}
|
||||
|
||||
<label class="form-label" for="filter_user_shop_id">Filter Jahr</label>
|
||||
<select class="custom-select" name="filter_sales_year" id="filter_sales_year">
|
||||
@foreach($years as $year)
|
||||
<option value="{{$year}}" @if($active_year == $year) selected @endif>{{$year}}</option>
|
||||
@endforeach
|
||||
</select>
|
||||
{!! Form::close() !!}
|
||||
|
||||
</div>
|
||||
|
||||
<div class="card-datatable table-responsive">
|
||||
<table class="datatables-style table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{__('Vorname')}}</th>
|
||||
<th>{{__('Nachname') }}</th>
|
||||
<th>{{__('E-Mail') }}</th>
|
||||
<th>{{__('Betrag') }}</th>
|
||||
<th>{{__('Datum') }}</th>
|
||||
<th>{{__('Order')}}</th>
|
||||
<th>{{__('Status')}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($values as $value)
|
||||
<tr>
|
||||
<td>{{ $value->shopping_user->billing_firstname }}</td>
|
||||
<td>{{ $value->shopping_user->billing_lastname }}</td>
|
||||
<td>{{ $value->shopping_user->billing_email }}</td>
|
||||
<td>{{ $value->getFormattedTotalShipping()." €" }}</td>
|
||||
<td>{{ $value->created_at->format("d.m.Y") }}</td>
|
||||
<td>@foreach($value->shopping_order_items as $shopping_order_item)
|
||||
{{ $shopping_order_item->product->name }}<br>
|
||||
@endforeach
|
||||
|
||||
</td>
|
||||
|
||||
<td>{!! App\Services\Payment::getShoppingOrderBadge($value) !!}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<script>
|
||||
|
||||
$('#filter_sales_year').on('change', function(){
|
||||
$('#filter_sales_member').submit();
|
||||
});
|
||||
|
||||
|
||||
</script>
|
||||
@endsection
|
||||
|
|
@ -12,15 +12,14 @@
|
|||
</div>
|
||||
<a href="{{route('user_homepartys')}}" class="btn btn-sm btn-default float-right">zurück</a>
|
||||
</h4>
|
||||
|
||||
{!! Form::open(['url' => route('user_homeparty_detail', [$homeparty->id]), 'class' => 'form-horizontal', 'id'=>'homeparty-party-form-validation']) !!}
|
||||
|
||||
<div class="card mb-4">
|
||||
<h5 class="card-header">
|
||||
<div class="row">
|
||||
@if(!$homeparty->id)
|
||||
<div class="col-12">
|
||||
Neue Homeparty anlegen
|
||||
<span class="text-tiny float-right">* {{trans('register.required_fields')}}</span>
|
||||
Neue Auszeitparty anlegen
|
||||
</div>
|
||||
@else
|
||||
<div class="col-12">
|
||||
|
|
@ -39,8 +38,8 @@
|
|||
<div class="card-body">
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-4 {{ $errors->has('name') ? 'has-error' : '' }}">
|
||||
<label for="name" class="form-label">{{ __('Veranstaltungsname') }}*</label>
|
||||
{{ Form::text('name', $homeparty->name, array('placeholder'=>__('Veranstaltungsname'), 'class'=>'form-control', 'required')) }}
|
||||
<label for="name" class="form-label">{{ __('Gastgeber / Veranstalter') }}*</label>
|
||||
{{ Form::text('name', $homeparty->name, array('placeholder'=>__('Gastgeber / Veranstalter'), 'class'=>'form-control', 'required')) }}
|
||||
@if ($errors->has('name'))
|
||||
<span class="help-block">
|
||||
<strong>{{ $errors->first('name') }}</strong>
|
||||
|
|
@ -68,12 +67,12 @@
|
|||
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="description">{{ __('Beschreibung') }}</label>
|
||||
{{ Form::textarea('description', $homeparty->description , array('placeholder'=>__('Beschreibung'), 'class'=>'form-control', 'rows'=>2)) }}
|
||||
<label class="form-label" for="description">{{ __('Beschreibung / Willkommenstext') }}</label>
|
||||
{{ Form::textarea('description', $homeparty->description , array('placeholder'=>__('Beschreibung'), 'class'=>'form-control', 'rows'=>5)) }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-left mt-3">
|
||||
<div class="text-left mt-3 mb-3">
|
||||
<button type="submit" class="btn btn-secondary mr-2 mb-2" name="action" value="homeparty-party-store">
|
||||
@if($homeparty->id) {{ __('Änderungen speichern') }} @else {{ __('speichern') }} @endif</button>
|
||||
<a href="{{route('user_homepartys')}}" class="btn btn-default mb-2">zurück zur Übersicht</a>
|
||||
|
|
@ -82,21 +81,7 @@
|
|||
|
||||
|
||||
@if($homeparty->id)
|
||||
<div class="card mb-3 mt-2">
|
||||
<div class="col-md-12 px-4 pt-4">
|
||||
<h6 class="mb-4">Lass den Gastgeber/in seine Daten selber ausfüllen</h6>
|
||||
<div class="form-group">
|
||||
<div class="input-group">
|
||||
<span class="input-group-prepend">
|
||||
<button class="btn btn-secondary" type="button" title="Kopiert!" data-clipboard-demo data-clipboard-target="#homeparty_link"><i class="ion ion-ios-copy"></i> Link kopieren</button>
|
||||
</span>
|
||||
<input type="text" class="form-control" name="homeparty_link" value="{{ $homeparty->getTokenLink() }}" id="homeparty_link" placeholder="">
|
||||
</div>
|
||||
</div>
|
||||
<p>Teile diesen Link mit dem Gastgeber/in und Gästen (z.B. WhatsApp oder SMS), damit gelangt sie auf eine Zielseite wo sie ihre Daten selber ausfüllen können. Nutze das „Kopier-Symbol“, um den Link gleich in Deine Zwischenablage zu kopieren.</p>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
{!! Form::open(['url' => route('user_homeparty_detail', [$homeparty->id]), 'class' => 'form-horizontal', 'id'=>'homeparty-user-form-validation']) !!}
|
||||
<div class="card mb-4">
|
||||
<h5 class="card-header">
|
||||
|
|
@ -117,6 +102,23 @@
|
|||
<a href="{{route('user_homepartys')}}" class="btn btn-default mb-2">zurück zur Übersicht</a>
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
<hr>
|
||||
<div class="card mb-3 mt-2">
|
||||
<div class="col-md-12 px-4 pt-4">
|
||||
<label class="form-label">Einladungslink für Gäste <span class="text-muted"> (lass Deine Gäste ihre Daten selber ausfüllen)</span></label>
|
||||
|
||||
<div class="form-group">
|
||||
<div class="input-group">
|
||||
<span class="input-group-prepend">
|
||||
<button class="btn btn-secondary" type="button" title="Kopiert!" data-clipboard-demo data-clipboard-target="#homeparty_link"><i class="ion ion-ios-copy"></i> Link kopieren</button>
|
||||
</span>
|
||||
<input type="text" class="form-control" name="homeparty_link" value="{{ $homeparty->getTokenLink() }}" id="homeparty_link" placeholder="">
|
||||
</div>
|
||||
</div>
|
||||
<p>Teile diesen Link mit den Gästen (z.B. WhatsApp oder SMS), damit gelangt sie auf eine Zielseite wo sie ihre Daten selber ausfüllen können. Nutze das „Kopier-Symbol“, um den Link gleich in Deine Zwischenablage zu kopieren.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endif
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -6,6 +6,21 @@
|
|||
<a href="{{route('user_homeparty_guests', [$homeparty->id])}}" class="btn btn-sm btn-default float-right">zurück</a>
|
||||
</h4>
|
||||
|
||||
@if(!$homeparty->completed)
|
||||
<div class="card mb-3">
|
||||
<div class="card-body py-3">
|
||||
<div class="form-group mb-0">
|
||||
<label class="form-label">Einladungslink für Gäste <span class="text-muted"> (lass Deine Gäste ihre Daten selber ausfüllen)</span></label>
|
||||
<div class="input-group">
|
||||
<span class="input-group-prepend">
|
||||
<button class="btn btn-sm btn-secondary" type="button" title="Kopiert!" data-clipboard-demo data-clipboard-target="#homeparty_link_{{$homeparty->id}}"><i class="ion ion-ios-copy"></i> Link kopieren</button>
|
||||
</span>
|
||||
<input type="text" class="form-control" name="homeparty_link_{{$homeparty->id}}" value="{{ $homeparty->getTokenLink() }}" id="homeparty_link_{{$homeparty->id}}" placeholder="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
{!! Form::open(['url' => route('user_homeparty_guest_detail', [$homeparty->id, $homeparty_user->id]), 'class' => 'form-horizontal', 'id'=>'homeparty-user-form-validation']) !!}
|
||||
<div class="card mb-4">
|
||||
<h5 class="card-header">
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<h4 class="font-weight-bold py-2 mb-2 d-flex justify-content-between align-items-center w-100 ">
|
||||
<div>{{ __('navigation.my_homeparty') }} / {{ $homeparty->name }} - {{ $homeparty->date }}</div>
|
||||
@if(!$homeparty->completed)
|
||||
<a href="{{route('user_homeparty_guest_detail', [$homeparty->id, 'new'])}}" class="btn btn-sm btn-secondary rounded-pill d-block float-right"><span class="ion ion-md-add"></span> Neue Gast anlegen</a>
|
||||
<a href="{{route('user_homeparty_guest_detail', [$homeparty->id, 'new'])}}" class="btn btn-sm btn-secondary rounded-pill d-block float-right"><span class="ion ion-md-person-add"></span> Gast anlegen</a>
|
||||
@endif
|
||||
</h4>
|
||||
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
@php($g_count = 1)
|
||||
|
||||
@foreach($homeparty->homeparty_users as $homeparty_user)
|
||||
<div class="card mb-4">
|
||||
<div class="card mb-3">
|
||||
<div class="card-body d-flex justify-content-between align-items-start pb-2">
|
||||
<div>
|
||||
<a href="{{route('user_homeparty_guest_detail', [$homeparty->id, $homeparty_user->id])}}" class="text-body text-big font-weight-semibold">
|
||||
|
|
@ -29,25 +29,18 @@
|
|||
@if(!$homeparty->completed)
|
||||
|
||||
<div>
|
||||
|
||||
<a href="{{route('user_homeparty_guest_detail', [$homeparty->id, $homeparty_user->id])}}" class="btn btn-sm btn-secondary mr-2"><i class="fa fa-edit"></i> bearbeiten</a>
|
||||
<div class="btn-group project-actions">
|
||||
@if($homeparty_user->is_host)
|
||||
<span class="ion ion-md-trash text-muted" data-toggle="tooltip" title="Gastgeber kann nicht gelsöcht werden"></span>
|
||||
|
||||
<button type="button" class="btn btn-sm btn-default icon-btn borderless rounded-pill md-btn-flat dropdown-toggle hide-arrow" data-toggle="dropdown">
|
||||
<i class="ion ion-ios-more"></i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-right">
|
||||
@if($homeparty_user->is_host)
|
||||
<a href="#" class=" dropdown-item">
|
||||
Gastgeber/in kann nicht gelöscht werden
|
||||
</a>
|
||||
@else
|
||||
<a href="{{ route('user_homeparty_delete', ['hpu', $homeparty->id, $homeparty_user->id]) }}"
|
||||
class=" dropdown-item" onclick="return confirm('Homeparty Gast wirklich löschen?');">
|
||||
<span class="ion ion-md-trash text-danger"></span> löschen
|
||||
</a>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
@else
|
||||
<a href="{{ route('user_homeparty_delete', ['hpu', $homeparty->id, $homeparty_user->id]) }}"
|
||||
class="" onclick="return confirm('Homeparty Gast wirklich löschen?');">
|
||||
<span class="ion ion-md-trash text-danger"></span>
|
||||
</a>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
|
@ -55,10 +48,7 @@
|
|||
<div class="progress rounded-0" style="height: 2px;">
|
||||
<div class="progress-bar" style="width: 100%;"></div>
|
||||
</div>
|
||||
<div class="card-body pt-1 pb-3">
|
||||
{{$homeparty->description}}
|
||||
</div>
|
||||
<div class="card-body pt-0">
|
||||
<div class="card-body pt-0 mt-2">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="text-muted small">Adresse</div>
|
||||
|
|
@ -81,9 +71,25 @@
|
|||
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
@if(!$homeparty->completed)
|
||||
<div class="card">
|
||||
<div class="card-body py-3">
|
||||
<div class="form-group mb-0">
|
||||
<label class="form-label">Einladungslink für Gäste <span class="text-muted"> (lass Deine Gäste ihre Daten selber ausfüllen)</span></label>
|
||||
<div class="input-group">
|
||||
<span class="input-group-prepend">
|
||||
<button class="btn btn-sm btn-secondary" type="button" title="Kopiert!" data-clipboard-demo data-clipboard-target="#homeparty_link_{{$homeparty->id}}"><i class="ion ion-ios-copy"></i> Link kopieren</button>
|
||||
</span>
|
||||
<input type="text" class="form-control" name="homeparty_link_{{$homeparty->id}}" value="{{ $homeparty->getTokenLink() }}" id="homeparty_link_{{$homeparty->id}}" placeholder="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-left mt-1">
|
||||
<div class="text-left mt-3">
|
||||
@if(!$homeparty->completed)
|
||||
<a href="{{route('user_homeparty_detail', [$homeparty->id])}}" class="btn btn-sm btn-secondary mr-2 mb-2"><i class="ion ion-ios-cog"></i> Homparty verwalten</a>
|
||||
@endif
|
||||
|
|
@ -91,4 +97,22 @@
|
|||
<a href="{{route('user_homepartys')}}" class="btn btn-sm btn-default mb-2">zurück zur Übersicht</a>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
<script>
|
||||
$( document ).ready(function() {
|
||||
var clipboardDemos = new ClipboardJS('[data-clipboard-demo]');
|
||||
clipboardDemos.on('success', function (e) {
|
||||
e.clearSelection();
|
||||
$(e.trigger).tooltip('enable').tooltip('show');
|
||||
});
|
||||
clipboardDemos.on('error', function (e) {
|
||||
console.error('Action:', e.action);
|
||||
console.error('Trigger:', e.trigger);
|
||||
});
|
||||
|
||||
$('button[data-clipboard-demo]').on('mouseout', function () {
|
||||
$(this).tooltip('disable');
|
||||
})
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
@section('content')
|
||||
<h4 class="font-weight-bold py-2 mb-2 d-flex justify-content-between align-items-center w-100 ">
|
||||
<div>{{ __('navigation.my_homeparty') }} / {{ __('navigation.overview') }}</div>
|
||||
<a href="{{route('user_homeparty_detail', ['new'])}}" class="btn btn-secondary rounded-pill d-block float-right"><span class="ion ion-md-add"></span> Neue Homeparty anlegen</a>
|
||||
<a href="{{route('user_homeparty_detail', ['new'])}}" class="btn btn-secondary rounded-pill d-block float-right"><span class="ion ion-md-add"></span> Neue Auszeitparty anlegen</a>
|
||||
</h4>
|
||||
|
||||
<div class="row">
|
||||
|
|
@ -19,17 +19,11 @@
|
|||
@endif
|
||||
</div>
|
||||
@if(!$homeparty->completed)
|
||||
|
||||
<div class="btn-group project-actions">
|
||||
<button type="button" class="btn btn-sm btn-default icon-btn borderless rounded-pill md-btn-flat dropdown-toggle hide-arrow" data-toggle="dropdown">
|
||||
<i class="ion ion-ios-more"></i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-right">
|
||||
<a href="{{ route('user_homeparty_delete', ['hp', $homeparty->id]) }}"
|
||||
class=" dropdown-item" onclick="return confirm('Homeparty wirklich löschen?');">
|
||||
<span class="ion ion-md-trash text-danger"></span> löschen
|
||||
</a>
|
||||
</div>
|
||||
<a href="{{ route('user_homeparty_delete', ['hp', $homeparty->id]) }}"
|
||||
class=" dropdown-item" onclick="return confirm('Auszeitparty wirklich löschen?');">
|
||||
<span class="ion ion-md-trash text-danger"></span>
|
||||
</a>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
|
@ -46,7 +40,7 @@
|
|||
<div class="font-weight-bold">{{$homeparty->date}}</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="text-muted small">Ort</div>
|
||||
<div class="text-muted small">Veranstaltungsort</div>
|
||||
<div class="font-weight-bold">{{$homeparty->place}}</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
|
|
@ -67,10 +61,11 @@
|
|||
<hr class="m-0">
|
||||
<div class="card-body py-3">
|
||||
<div class="form-group mb-0">
|
||||
<label class="form-label">Einladungslink für Gäste <span class="text-muted"> (lass Deine Gäste ihre Daten selber ausfüllen)</span></label>
|
||||
<div class="input-group">
|
||||
<span class="input-group-prepend">
|
||||
<button class="btn btn-sm btn-secondary" type="button" title="Kopiert!" data-clipboard-demo data-clipboard-target="#homeparty_link_{{$homeparty->id}}"><i class="ion ion-ios-copy"></i> Link kopieren</button>
|
||||
</span>
|
||||
<span class="input-group-prepend">
|
||||
<button class="btn btn-sm btn-secondary" type="button" title="Kopiert!" data-clipboard-demo data-clipboard-target="#homeparty_link_{{$homeparty->id}}"><i class="ion ion-ios-copy"></i> Link kopieren</button>
|
||||
</span>
|
||||
<input type="text" class="form-control" name="homeparty_link_{{$homeparty->id}}" value="{{ $homeparty->getTokenLink() }}" id="homeparty_link_{{$homeparty->id}}" placeholder="">
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -80,15 +75,13 @@
|
|||
<div class="card-body py-3">
|
||||
<div class="d-flex flex-wrap">
|
||||
@if(!$homeparty->completed)
|
||||
<a href="{{route('user_homeparty_detail', [$homeparty->id])}}" class="btn btn-secondary mr-2 mb-2"><i class="ion ion-ios-cog"></i> Verwalten</a>
|
||||
<a href="{{route('user_homeparty_guests', [$homeparty->id])}}" class="btn btn-secondary mr-2 mb-2"><i class="ion ion-md-person-add"></i> Gäste anlegen</a>
|
||||
<a href="{{route('user_homeparty_detail', [$homeparty->id])}}" class="btn btn-secondary mr-2 mb-2"><i class="ion ion-ios-cog"></i> Verwalten</a>
|
||||
<a href="{{route('user_homeparty_guests', [$homeparty->id])}}" class="btn btn-secondary mr-2 mb-2"><i class="ion ion-md-contacts"></i> Gästeliste</a>
|
||||
<a href="{{ route('user_homeparty_guest_detail', [$homeparty->id, 'new']) }}" class="btn btn-secondary mr-2 mb-2"><i class="ion ion-md-person-add"></i> Gast anlegen</a>
|
||||
<a href="{{route('user_homeparty_order', [$homeparty->id])}}" class="btn btn-secondary mr-2 mb-2"><i class="ion ion-md-basket"></i> Bestellung</a>
|
||||
|
||||
@else
|
||||
<a href="{{route('user_homeparty_guests', [$homeparty->id])}}" class="btn btn-secondary mr-2 mb-2"><i class="ion ion-md-person"></i> Gäste ansehen</a>
|
||||
<a href="{{route('user_homeparty_guests', [$homeparty->id])}}" class="btn btn-secondary mr-2 mb-2"><i class="ion ion-md-contacts"></i> Gästeliste</a>
|
||||
<a href="{{route('user_homeparty_order', [$homeparty->id])}}" class="btn btn-secondary mr-2 mb-2"><i class="ion ion-md-basket"></i> Bestellung ansehen</a>
|
||||
|
||||
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -5,43 +5,152 @@
|
|||
|
||||
@if($homeparty_user === null)
|
||||
<h4 class="font-weight-bold py-2 mb-2 d-flex justify-content-between align-items-center w-100 ">
|
||||
<div>Homeparty / {{ $homeparty->name }} - {{ $homeparty->date }}</div>
|
||||
<div>Auszeitparty / {{ $homeparty->name }} - {{ $homeparty->date }}</div>
|
||||
</h4>
|
||||
@if(Session::has('alert-save'))
|
||||
<div class="alert alert-dark-secondary alert-dismissible fade show">
|
||||
<div class="font-weight-bold">
|
||||
{{__('saved')}}: {{__('The changes have been saved.')}}
|
||||
{{__('saved')}}:
|
||||
Deine Daten erfolgreich wurden angelegt. Viel Spaß bei der Auszeitparty!
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
|
||||
<div class="card mb-4">
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h4 class="font-weight-normal mb-0">
|
||||
@if($homeparty_host)
|
||||
@if($homeparty_host->billing_salutation === 'mr')
|
||||
Dein Gastgeber
|
||||
@else
|
||||
Deine Gastgeberin
|
||||
@endif
|
||||
@endif
|
||||
</h4>
|
||||
<div class="media align-items-center py-3 mb-3 mt-0">
|
||||
<img src="{{ asset('images/avatar.png') }}" alt="" class="d-block ui-w-80 rounded-circle">
|
||||
<div class="media-body ml-4">
|
||||
<div class="text-body text-big font-weight-semibold mb-0">
|
||||
@if($homeparty_host)
|
||||
{{$homeparty_host->billing_firstname}} {{$homeparty_host->billing_lastname}}
|
||||
@endif
|
||||
</div>
|
||||
<div class="text-muted mb-2"><i class="ion ion-md-mail pr-1"></i>
|
||||
@if($homeparty_host)
|
||||
{{ $homeparty_host->billing_email }}
|
||||
@endif
|
||||
</div>
|
||||
<div class="text-muted mb-2"><i class="ion ion-md-phone-portrait pr-2"></i>
|
||||
@if($homeparty_host)
|
||||
{{ $homeparty_host->billing_phone }}
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<h4 class="font-weight-normal mb-0">Deine MIVITA Beratung</h4>
|
||||
<div class="media align-items-center py-3 mb-3 mt-0">
|
||||
<img src="{{ asset('images/avatar.png') }}" alt="" class="d-block ui-w-80 rounded-circle">
|
||||
<div class="media-body ml-4">
|
||||
<div class="text-body text-big font-weight-semibold mb-0">
|
||||
@if($mivita_member)
|
||||
{{ $mivita_member->account->first_name }} {{ $mivita_member->account->last_name }}
|
||||
@endif
|
||||
</div>
|
||||
<div class="text-muted mb-2"><i class="ion ion-md-mail pr-1"></i>
|
||||
@if($mivita_member)
|
||||
{{ $mivita_member->email }}
|
||||
@endif
|
||||
</div>
|
||||
<div class="text-muted mb-2"><i class="ion ion-md-phone-portrait pr-2"></i>
|
||||
@if($mivita_member)
|
||||
{{ $mivita_member->account->getPhoneNumber() }}
|
||||
@endif
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="progress rounded-0" style="height: 2px;">
|
||||
<div class="progress-bar" style="width: 100%;"></div>
|
||||
</div>
|
||||
<div class="card-body pt-3 pb-3">
|
||||
<h4 class="font-weight-normal mb-2">Einladung</h4>
|
||||
{{$homeparty->description}}
|
||||
</div>
|
||||
<div class="card-body pt-0">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="text-muted small">Datum</div>
|
||||
<div class="font-weight-bold">{{$homeparty->date}}</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="text-muted small">Veranstaltungsort</div>
|
||||
<div class="font-weight-bold">{{$homeparty->place}}</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="text-muted small">Straße / Hausnummer</div>
|
||||
<div class="font-weight-bold">
|
||||
@if($homeparty_host)
|
||||
{{ $homeparty_host->billing_address }}
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="text-muted small">PLZ & Ort</div>
|
||||
<div class="font-weight-bold">
|
||||
@if($homeparty_host)
|
||||
{{ $homeparty_host->billing_zipcode }} {{ $homeparty_host->billing_city }}
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="text-muted small">Land</div>
|
||||
<div class="font-weight-bold">
|
||||
@if($homeparty_host && $homeparty_host->billing_country)
|
||||
{{ $homeparty_host->billing_country->de }}
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@php($g_count = 1)
|
||||
@foreach($homeparty->homeparty_users as $homeparty_user)
|
||||
<div class="card mb-4">
|
||||
<div class="card-body d-flex justify-content-between align-items-start pb-2">
|
||||
@foreach($homeparty->homeparty_guests as $homeparty_user)
|
||||
<div class="card mb-3">
|
||||
<div class="card-body d-flex justify-content-between align-items-start pt-3 pb-3">
|
||||
<div>
|
||||
<a href="{{route('homeparty', [$homeparty->token, $homeparty_user->id])}}" class="text-body text-big font-weight-semibold">
|
||||
<div class="text-body text-big font-weight-semibold">
|
||||
@if($homeparty_user->is_host)
|
||||
<span class="text-muted">Gastgeber/in: </span>
|
||||
@else
|
||||
<span class="text-muted">Gast {{$g_count++}}: </span>
|
||||
@endif
|
||||
{{$homeparty_user->billing_firstname}} {{$homeparty_user->billing_lastname}}
|
||||
</a>
|
||||
</div>
|
||||
{{-- <span class="badge badge-success align-text-bottom ml-1">offen ...</span> --}}
|
||||
</div>
|
||||
<div>
|
||||
{{-- <div>
|
||||
<a href="{{route('homeparty', [$homeparty->token, $homeparty_user->id])}}" class="btn btn-sm btn-secondary mr-2"><i class="fa fa-edit"></i> bearbeiten</a>
|
||||
</div>
|
||||
--}}
|
||||
</div>
|
||||
<div class="progress rounded-0" style="height: 2px;">
|
||||
{{-- <div class="progress rounded-0" style="height: 2px;">
|
||||
<div class="progress-bar" style="width: 100%;"></div>
|
||||
</div>
|
||||
<div class="card-body pt-1 pb-3">
|
||||
{{$homeparty->description}}
|
||||
</div>
|
||||
<div class="card-body pt-0">
|
||||
<div class="card-body pt-3">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="text-muted small">Adresse</div>
|
||||
|
|
@ -60,17 +169,16 @@
|
|||
<div class="font-weight-bold">{{$homeparty_user->billing_email}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>--}}
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
<a href="{{route('homeparty', [$homeparty->token, 'new'])}}" class="btn btn-md btn-secondary rounded-pill"><span class="ion ion-md-add"></span> Neue Gast anlegen</a>
|
||||
<a href="{{route('homeparty', [$homeparty->token, 'new'])}}" class="btn btn-md btn-secondary rounded-pill"><span class="ion ion-md-person-add"></span> als Gast eintragen</a>
|
||||
|
||||
@else
|
||||
<h4 class="font-weight-bold py-2 mb-2 d-flex justify-content-between align-items-center w-100 ">
|
||||
<div>Homeparty / {{ $homeparty->name }} - {{ $homeparty->date }}</div>
|
||||
<div>Auszeitparty / {{ $homeparty->name }} - {{ $homeparty->date }}</div>
|
||||
<a href="{{route('homeparty', [$homeparty->token])}}" class="btn btn-sm btn-default float-right">zurück</a>
|
||||
</h4>
|
||||
|
||||
|
|
@ -82,9 +190,23 @@
|
|||
</div>
|
||||
</div>
|
||||
@endif
|
||||
@if ($errors->any())
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="alert alert-danger">
|
||||
<ul>
|
||||
@foreach ($errors->all() as $error)
|
||||
<li>{{ $error }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
<div class="card mb-4">
|
||||
<div class="col-md-12 px-4 pt-4">
|
||||
<h6 class="mb-4">Eingabe Deiner persönlichen Daten für die Homeparty</h6>
|
||||
<h6 class="mb-2">Eingabe Deiner persönlichen Daten für die Auszeitparty</h6>
|
||||
<p>Hinweis: Aus Datenschutzgründen werden Deine persönlichen Daten hier den anderen Teilnehmern nicht angezeigt. Nach dem Absenden können Sie auch nicht mehr bearbeitet werden. Möchtest Du nachträglich eine Änderung vornehmen, wende Dich bitte an Deinen persönlichen MIVITA Berater.</p>
|
||||
<hr>
|
||||
</div>
|
||||
<h5 class="card-header">
|
||||
|
|
@ -101,9 +223,9 @@
|
|||
@include('user.homeparty._edit')
|
||||
<hr class="mt-0">
|
||||
<div class="form-row px-4">
|
||||
<div class="form-group">
|
||||
<div class="form-group mb-0">
|
||||
<label class="custom-control custom-checkbox m-2 ">
|
||||
<input type="checkbox" class="custom-control-input" name="check_for_ot" id="checkbox_for_me" required>
|
||||
<input type="checkbox" class="custom-control-input" name="checkbox_datenverarbeitung" id="checkbox_datenverarbeitung" required>
|
||||
<span class="custom-control-label secondary">
|
||||
<span class="fa fa-angle-double-left text-primary fa-lg"></span>
|
||||
Hiermit willige ich in die im Rahmen der <button type="button" class="btn btn-outline-primary btn-xs update_modal_data_load" data-url="https://my.mivita.test/loading/modal" data-data="data_protection" data-target="#modal-loading">Datenschutzerklärung</button>
|
||||
|
|
@ -112,9 +234,20 @@ genannte Datenverarbeitung ein. Ich wurde darüber informiert, dass ich diese Ei
|
|||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row px-4">
|
||||
<div class="form-group">
|
||||
<label class="custom-control custom-checkbox m-2">
|
||||
<input type="checkbox" class="custom-control-input" name="checkbox_daten_completely" id="checkbox_daten_completely">
|
||||
<span class="custom-control-label secondary">
|
||||
<span class="fa fa-angle-double-left text-primary fa-lg"></span>
|
||||
Ich bestätige, dass meine Daten richtig und vollständig sind. Eine Änderung ist nach dem Absenden nur noch über meinen persönlichen MIVITA Berater möglich.*
|
||||
</span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-left mt-3">
|
||||
<button type="submit" class="btn btn-secondary mr-2 mb-2" name="action" value="homeparty-user-store"> @if($homeparty_user->id) {{ __('Änderungen speichern') }} @else {{ __('speichern') }} @endif</button>
|
||||
<button type="submit" class="btn btn-secondary mr-2 mb-2" name="action" value="homeparty-user-store"> @if($homeparty_user->id) {{ __('Änderungen speichern') }} @else {{ __('absenden') }} @endif</button>
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
{{ Form::hidden('shipping_company', $shopping_user->billing_company) }}
|
||||
{{ Form::hidden('shipping_salutation', $shopping_user->billing_salutation) }}
|
||||
{{ Form::hidden('shipping_firstname', $shopping_user->billing_first_name) }}
|
||||
{{ Form::hidden('shipping_lastname', $shopping_user->billing_last_name) }}
|
||||
{{ Form::hidden('shipping_firstname', $shopping_user->billing_firstname) }}
|
||||
{{ Form::hidden('shipping_lastname', $shopping_user->billing_lastname) }}
|
||||
{{ Form::hidden('shipping_address', $shopping_user->billing_address) }}
|
||||
{{ Form::hidden('shipping_address_2', $shopping_user->billing_address_2) }}
|
||||
{{ Form::hidden('shipping_zipcode', $shopping_user->billing_zipcode) }}
|
||||
|
|
|
|||
|
|
@ -135,9 +135,9 @@
|
|||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
@if($errors->has('phone') || $errors->has('mobil'))
|
||||
<div class="alert badge-danger block p-2">Bitte {{ __('Phone') }} und/oder {{ __('Mobile Phone') }} angeben!*</div>
|
||||
<div class="alert badge-danger block p-2">Fehler: Bitte {{ __('Phone') }} und/oder {{ __('Mobile Phone') }} angeben!*</div>
|
||||
@else
|
||||
<div class="badge badge-warning">Bitte {{ __('Phone') }} und/oder {{ __('Mobile Phone') }} angeben!*</div>
|
||||
<div class="badge badge-default">Hinweis: Bitte {{ __('Phone') }} und/oder {{ __('Mobile Phone') }} angeben!*</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<p class="font-lato weight-300 size-20 nomargin-bottom">
|
||||
Du möchtest Vertriebspartner werden oder hast Fragen zu unseren Produkten?
|
||||
</p>
|
||||
<h3>Jetzt Kontakt aufnehmen: <span><strong style="color:#566d56">+49 (0) 8333 946 98 90</strong></span>
|
||||
<h3>Jetzt Kontakt aufnehmen: <span><strong style="color:#566d56">+49 (0) 8333 946 17 67</strong></span>
|
||||
</h3>
|
||||
</div><!-- /left text -->
|
||||
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
87755 Kirchhaslach<br>
|
||||
</li>
|
||||
<li class="footer-sprite phone">
|
||||
Telefon: +49 (0) 8333 946 98 90
|
||||
Telefon: +49 (0) 8333 946 17 67
|
||||
</li>
|
||||
<li class="footer-sprite email">
|
||||
<a href="mailto:info@riwa-tec.de">info@mivita.care</a>
|
||||
|
|
|
|||
|
|
@ -69,6 +69,13 @@
|
|||
Produktwelt
|
||||
</a>
|
||||
</li>
|
||||
@if(!$user_shop)
|
||||
<li class="">
|
||||
<a href="https://mivita.shop/produkte/alle-produkte">
|
||||
Shop
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
<li class="{{ Request::is('geschaeftsmodell/*') ? ' active' : '' }}">
|
||||
<a href="{{url('/geschaeftsmodell/karrierechancen')}} ">
|
||||
Karrierechancen
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@
|
|||
.tp-caption {
|
||||
text-shadow: none;
|
||||
}
|
||||
.tp-caption.large_bold_white {
|
||||
font-size:40px;
|
||||
line-height:52px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- REVOLUTION SLIDER -->
|
||||
|
|
@ -24,9 +28,9 @@
|
|||
|
||||
<div class="overlay dark-0"><!-- dark overlay [1 to 9 opacity] --></div>
|
||||
|
||||
<div class="tp-caption customin ltl tp-resizeme text_white"
|
||||
<div class="tp-caption customin ltl tp-resizeme large_bold_white"
|
||||
data-x="center"
|
||||
data-y="60"
|
||||
data-y="50"
|
||||
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
|
||||
data-speed="800"
|
||||
data-start="1000"
|
||||
|
|
@ -37,12 +41,12 @@
|
|||
data-endelementdelay="0.1"
|
||||
data-endspeed="1000"
|
||||
data-endeasing="Power4.easeIn" style="z-index: 10;">
|
||||
<span class="weight-400">Deutscher Direktvertrieb für</span>
|
||||
<span class="h1">Bio Aloe Vera & Naturkosmetik</span>
|
||||
</div>
|
||||
|
||||
<div class="tp-caption customin ltl tp-resizeme large_bold_white"
|
||||
data-x="center"
|
||||
data-y="100"
|
||||
data-y="120"
|
||||
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
|
||||
data-speed="800"
|
||||
data-start="1200"
|
||||
|
|
@ -53,7 +57,7 @@
|
|||
data-endelementdelay="0.1"
|
||||
data-endspeed="1000"
|
||||
data-endeasing="Power4.easeIn" style="z-index: 10;">
|
||||
<span class="h1">100% Premium Bio Aloe Vera</span>
|
||||
<span class="weight-400">Nahrungsergänzung</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
|
|||
|
|
@ -49,8 +49,7 @@ Verantwortlicher im Sinne der Datenschutz-Grundverordnung sowie der in den Mitgl
|
|||
Herr Alois Ried<br>
|
||||
Leinfeld 2<br>
|
||||
87755 Kirchhaslach<br>
|
||||
Telefon: +49 (0) 8333 946 98 90<br>
|
||||
Fax: +49 (0) 8333 7268<br>
|
||||
Telefon: +49 (0) 8333 946 17 67<br>
|
||||
Mail: info@mivita.care<br>
|
||||
<br><br>
|
||||
<strong>III. Cookies</strong>
|
||||
|
|
|
|||
|
|
@ -11,8 +11,7 @@
|
|||
<p><strong>mivita e.K.</strong><br>
|
||||
Leinfeld 2<br>
|
||||
87755 Kirchhaslach<br>
|
||||
Telefon: +49 (0) 8333 946 98 90<br>
|
||||
Fax: +49 (0) 8333 7268<br>
|
||||
Telefon: +49 (0) 8333 946 17 67<br>
|
||||
E-Mail: info@mivita.care<br></p>
|
||||
|
||||
<p><strong>Geschäftsinhaber:</strong><br> Alois Ried<br><br>
|
||||
|
|
@ -24,7 +23,7 @@
|
|||
<strong>USt-ID-Nr.:</strong><br> DE 244162340<br></p>
|
||||
<br>
|
||||
<p><strong>Support mivita:</strong><br>
|
||||
Telefon: +49 (0) 8333 946 98 90<br>
|
||||
Telefon: +49 (0) 8333 946 17 67<br>
|
||||
E-Mail:: <a href="mailto:info@mivita.care">info@mivita.care</a></p>
|
||||
|
||||
<br>
|
||||
|
|
|
|||
|
|
@ -264,9 +264,9 @@
|
|||
Leinfeld 2<br>
|
||||
87755 Kirchhaslach</span>
|
||||
<span class="block"><strong><i class="fa fa-phone"></i> Telefon:</strong> <a
|
||||
href="tel:0 8333-946 98 90">0 8333-946 98 90</a></span>
|
||||
href="tel:083339461767">0 8333 946 17 67 </a></span>
|
||||
<span class="block"><strong><i class="fa fa-envelope"></i> Email:</strong> <a
|
||||
href="mailto:info@riwa-tec.de">info@mivita.care</a></span>
|
||||
href="mailto:info@mivita.care">info@mivita.care</a></span>
|
||||
</p>
|
||||
|
||||
<hr/>
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@
|
|||
}
|
||||
</style>
|
||||
|
||||
{{-- <script src='https://www.google.com/recaptcha/api.js'></script>--}}
|
||||
<script src='https://www.google.com/recaptcha/api.js'></script>
|
||||
|
||||
|
||||
<section>
|
||||
|
|
@ -169,6 +169,10 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="col-md-12">
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-md-12" style="margin-bottom: 8px; margin-top: 8px;">
|
||||
<label class="checkbox {{ ($errors->has('accepted_data_protection') ? 'error' : '') }}" for="accepted_data_protection">
|
||||
|
|
@ -186,7 +190,7 @@
|
|||
|
||||
</div>
|
||||
|
||||
{{-- <div class="row contact-row">
|
||||
<div class="row contact-row">
|
||||
<div class="col-md-12">
|
||||
<div class="g-recaptcha" data-sitekey="{{$GOOGLE_ReCAPTCHA_KEY}}"></div>
|
||||
@if ($errors->has('g-recaptcha-response'))
|
||||
|
|
@ -196,7 +200,7 @@
|
|||
@endif
|
||||
</div>
|
||||
</div>
|
||||
--}}
|
||||
|
||||
<button type="submit" class="btn btn-primary btn-text-500"><i class="fa fa-check"></i> jetzt registrieren</button>
|
||||
{!! Form::close() !!}
|
||||
</div> <!-- end col -->
|
||||
|
|
@ -246,9 +250,9 @@
|
|||
Leinfeld 2<br>
|
||||
87755 Kirchhaslach</span>
|
||||
<span class="block"><strong><i class="fa fa-phone"></i> Telefon:</strong> <a
|
||||
href="tel:0 8333-946 98 90">0 8333-946 98 90</a></span>
|
||||
href="tel:0 8333 946 17 67">0 8333 946 17 67</a></span>
|
||||
<span class="block"><strong><i class="fa fa-envelope"></i> Email:</strong> <a
|
||||
href="mailto:info@riwa-tec.de">info@mivita.care</a></span>
|
||||
href="mailto:info@mivita.care">info@mivita.care</a></span>
|
||||
</p>
|
||||
<hr/>
|
||||
<h4 class="font300">Geschäftszeiten</h4>
|
||||
|
|
|
|||
|
|
@ -138,7 +138,7 @@
|
|||
Leinfeld 2<br>
|
||||
87755 Kirchhaslach</span>
|
||||
<span class="block"><strong><i class="fa fa-phone"></i> Telefon:</strong> <a
|
||||
href="tel:0 8333-946 98 90">0 8333-946 98 90</a></span>
|
||||
href="tel:0 8333 946 17 67">0 8333 946 17 67</a></span>
|
||||
<span class="block"><strong><i class="fa fa-envelope"></i> Email:</strong> <a
|
||||
href="mailto:info@riwa-tec.de">info@mivita.care</a></span>
|
||||
</p>
|
||||
|
|
|
|||
|
|
@ -39,6 +39,10 @@
|
|||
border: 6px solid #bbccab;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.tp-caption.large_bold_white {
|
||||
font-size:40px;
|
||||
line-height:52px;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
|
|
@ -57,9 +61,9 @@
|
|||
|
||||
<div class="overlay dark-0"><!-- dark overlay [1 to 9 opacity] --></div>
|
||||
|
||||
<div class="tp-caption customin ltl tp-resizeme text_white"
|
||||
<div class="tp-caption customin ltl tp-resizeme large_bold_white"
|
||||
data-x="center"
|
||||
data-y="60"
|
||||
data-y="50"
|
||||
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
|
||||
data-speed="800"
|
||||
data-start="1000"
|
||||
|
|
@ -70,12 +74,12 @@
|
|||
data-endelementdelay="0.1"
|
||||
data-endspeed="1000"
|
||||
data-endeasing="Power4.easeIn" style="z-index: 10;">
|
||||
<span class="weight-400">Deutscher Direktvertrieb für</span>
|
||||
<span class="h1">Bio Aloe Vera & Naturkosmetik</span>
|
||||
</div>
|
||||
|
||||
<div class="tp-caption customin ltl tp-resizeme large_bold_white"
|
||||
data-x="center"
|
||||
data-y="100"
|
||||
data-y="120"
|
||||
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
|
||||
data-speed="800"
|
||||
data-start="1200"
|
||||
|
|
@ -86,8 +90,8 @@
|
|||
data-endelementdelay="0.1"
|
||||
data-endspeed="1000"
|
||||
data-endeasing="Power4.easeIn" style="z-index: 10;">
|
||||
<span class="h1">100% Premium Bio Aloe Vera</span>
|
||||
</div>
|
||||
<span class="weight-400">Nahrungsergänzung</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tp-bannertimer"></div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue