Files
CRM/resources/views/compliance/index.blade.php
Kroonk a213a1dba0
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
refactor: replace custom CRM with Monica fork
2026-05-22 16:19:55 +02:00

18 lines
666 B
PHP

@extends('layouts.skeleton')
@section('content')
<section class="ph3 ph0-ns mt4">
<div class="mw7 center br3 ba b--gray-monica bg-white mb5 pa5">
<h2 class="mb4">{{ trans('app.compliance_title') }}</h2>
<p>{!! trans('app.compliance_desc', ['url' => 'https://monicahq.com/privacy', 'urlterm' => 'https://monicahq.com/terms', 'hreflang' => 'en', ]) !!}</p>
<p>{{ trans('app.compliance_desc_end') }}</p>
<form action="compliance/sign" method="POST" class="tc mt4">
@csrf
<button class="btn btn-primary" name="save" type="submit">{{ trans('app.compliance_terms') }}</button>
</form>
</div>
</div>
@endsection