Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/tutor/templates/ecommerce/billing.php

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + <?php
2 + /**
3 + * Billing Template
4 + *
5 + * @package Tutor\Templates
6 + * @subpackage Dashboard\Settings
7 + * @author Themeum <support@themeum.com>
8 + * @link https://themeum.com
9 + * @since 3.0.0
10 + */
11 +
12 + ?>
13 +
14 + <div class="tutor-fs-4 tutor-fw-medium tutor-mb-24"><?php esc_html_e( 'Settings', 'tutor' ); ?></div>
15 +
16 + <div class="tutor-dashboard-content-inner tutor-dashboard-setting-billing">
17 + <div class="tutor-mb-32">
18 + <?php tutor_load_template( 'dashboard.settings.nav-bar', array( 'active_setting_nav' => 'billing' ) ); ?>
19 + <div class="tutor-fs-6 tutor-fw-medium tutor-color-black tutor-mt-32"><?php esc_html_e( 'Billing Address', 'tutor' ); ?></div>
20 + </div>
21 +
22 + <form id="user_billing_form" style="max-width: 600px;">
23 + <?php tutor_nonce_field(); ?>
24 + <input type="hidden" value="tutor_save_billing_info" name="action" />
25 +
26 + <?php require __DIR__ . '/billing-form-fields.php'; ?>
27 +
28 + <div class="tutor-row">
29 + <div class="tutor-col-12">
30 + <button type="submit" class="tutor-btn tutor-btn-primary">
31 + <?php esc_html_e( 'Save Address', 'tutor' ); ?>
32 + </button>
33 + </div>
34 + </div>
35 + </form>
36 + </div>
37 +