added success message
parent
252c97ca4f
commit
ff83497012
|
@ -3,8 +3,7 @@
|
|||
<component name="ChangeListManager">
|
||||
<list default="true" id="63513c45-0a61-435e-8541-3831c195f7c0" name="Changes" comment="">
|
||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/content/master.blade.php" beforeDir="false" afterPath="$PROJECT_DIR$/content/master.blade.php" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/content/pages/anlagen.blade.php" beforeDir="false" afterPath="$PROJECT_DIR$/content/pages/anlagen.blade.php" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/content/pages/checkout.blade.php" beforeDir="false" afterPath="$PROJECT_DIR$/content/pages/checkout.blade.php" afterDir="false" />
|
||||
</list>
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
|
@ -57,6 +56,8 @@
|
|||
<updated>1661770675373</updated>
|
||||
<workItem from="1661770681303" duration="17592000" />
|
||||
<workItem from="1661893105257" duration="2349000" />
|
||||
<workItem from="1661946156009" duration="594000" />
|
||||
<workItem from="1662027309116" duration="6228000" />
|
||||
</task>
|
||||
<servers />
|
||||
</component>
|
||||
|
|
|
@ -5,10 +5,75 @@
|
|||
@stop
|
||||
@section('content')
|
||||
<div class="container">
|
||||
@if(session()->has('success'))
|
||||
<br>
|
||||
<div class="alert alert-success">{{session()->get('success')}}</div>
|
||||
<br>
|
||||
@if(true)
|
||||
<div class="row">
|
||||
|
||||
<div class="col-12">
|
||||
|
||||
<div class="alert alert-success alert-dismissible mt-5" role="alert">
|
||||
<div class="row">
|
||||
<div class="col-1">
|
||||
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
|
||||
<lottie-player src="https://assets6.lottiefiles.com/packages/lf20_mddh5ano.json" background="transparent" speed="1" style="width: 120px; height: 120px;" autoplay></lottie-player>
|
||||
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<br>
|
||||
<h2 class="mt-3 ms-3 fs-3">Anfrage erfolgreich abgesendet!</h2>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="col-12">
|
||||
<h1 class="mt-5 mb-4">Kostenloses Beratungsgespräch</h1>
|
||||
<h5 class="mt-5 mb-4">Wann haben Sie Zeit um zu telefonieren?</h5>
|
||||
<p class="fs-5">Wenn Sie wünschen können wir unverbindlich über Ihre Auswahl sprechen, bevor ich Ihnen ein Angebot zuschicke.
|
||||
<br>
|
||||
So können Sie alle Fragen und etwaige Unklarheiten direkt mit mir klären.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-12" style="min-height:800px; ">
|
||||
|
||||
|
||||
|
||||
<!-- Calendly inline widget begin -->
|
||||
<div class="calendly-inline-widget" style="width:1200px;;height:100%;" data-auto-load="false">
|
||||
<script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js"></script>
|
||||
<script>
|
||||
Calendly.initInlineWidget({
|
||||
url: 'https://calendly.com/areya/beratung-solar?hide_gdpr_banner=1',
|
||||
prefill: {
|
||||
name: "John Doe",
|
||||
email: "john@doe2.com"
|
||||
}
|
||||
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
</div>
|
||||
<!-- Calendly inline widget end -->
|
||||
</div>
|
||||
@else
|
||||
<section>
|
||||
<div class="row">
|
||||
|
@ -163,7 +228,7 @@
|
|||
}
|
||||
function initialize() {
|
||||
let input = document.getElementById('field_location');
|
||||
let options = {
|
||||
let options = {
|
||||
types: ['address'],
|
||||
componentRestrictions: { country: "de" }
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue