This commit is contained in:
65
application/views/pages/google_analytics_settings.php
Normal file
65
application/views/pages/google_analytics_settings.php
Normal file
@@ -0,0 +1,65 @@
|
||||
<?php extend('layouts/backend_layout'); ?>
|
||||
|
||||
<?php section('content'); ?>
|
||||
|
||||
<div id="google-analytics-settings-page" class="container backend-page">
|
||||
<div class="row">
|
||||
<div class="col-sm-3 offset-sm-1">
|
||||
<?php component('settings_nav'); ?>
|
||||
</div>
|
||||
<div id="google-analytics-settings" class="col-sm-6">
|
||||
<form>
|
||||
<fieldset>
|
||||
<div class="d-flex justify-content-between align-items-center border-bottom mb-4 py-2">
|
||||
<h4 class="text-black-50 mb-0 fw-light">
|
||||
<?= lang('google_analytics') ?>
|
||||
</h4>
|
||||
|
||||
<div>
|
||||
<a href="<?= site_url('integrations') ?>" class="btn btn-outline-primary me-2">
|
||||
<i class="fas fa-chevron-left me-2"></i>
|
||||
<?= lang('back') ?>
|
||||
</a>
|
||||
|
||||
<?php if (can('edit', PRIV_SYSTEM_SETTINGS)): ?>
|
||||
<button type="button" id="save-settings" class="btn btn-primary">
|
||||
<i class="fas fa-check-square me-2"></i>
|
||||
<?= lang('save') ?>
|
||||
</button>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="google-analytics-code">
|
||||
<?= lang('google_analytics_code') ?>
|
||||
</label>
|
||||
<input id="google-analytics-code" placeholder="UA-XXXXXXXX-XX or G-XXXXXXXXXX"
|
||||
class="form-control" data-field="google_analytics_code">
|
||||
<div class="form-text text-muted">
|
||||
<small>
|
||||
<?= lang('google_analytics_code_hint') ?>
|
||||
</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_appointment_fields'); ?>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php end_section('content'); ?>
|
||||
|
||||
<?php section('scripts'); ?>
|
||||
|
||||
<script src="<?= asset_url('assets/js/utils/url.js') ?>"></script>
|
||||
<script src="<?= asset_url('assets/js/http/google_analytics_settings_http_client.js') ?>"></script>
|
||||
<script src="<?= asset_url('assets/js/pages/google_analytics_settings.js') ?>"></script>
|
||||
|
||||
<?php end_section('scripts'); ?>
|
||||
Reference in New Issue
Block a user