Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
2021-03-31 15:50:55 +01:00
8 changed files with 20 additions and 3 deletions

View File

@@ -10,6 +10,12 @@
@section('js')
<script>
jQuery(window).bind('beforeunload', function(){
return 'Are you sure you want to leave the form builder? You might have unsaved work.';
});
</script>
@if (session()->has('success'))
<script>

View File

@@ -69,6 +69,8 @@
<p>{{__('messages.application_r.welcome.line2', ['agerqr' => '18 ' . __('messages.application_r.welcome.yrs_old')])}}.</p>
<p class="text-bold">{{__('messages.application_r.welcome.line3')}}.</p>
<p><i class="fab fa-markdown"></i> All fields support <a target="_blank" href="https://www.markdownguide.org/cheat-sheet/">Markdown</a></p>
</div>
</div>

View File

@@ -103,7 +103,8 @@
<div class="mt-4 mb-3">
<h5>{{$content['title']}}</h5>
<p>{{$content['response']}}</p>
<p>{!! GrahamCampbell\Markdown\Facades\Markdown::convertToHtml($content['response']) !!}</p>
</div>