Files
roi-theme/wp-content/plugins/thrive-ultimatum/thrive-dashboard/templates/product/inactive.phtml
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

99 lines
4.4 KiB
PHTML
Executable File

<?php
/** @var $this TVE_Dash_Product_Abstract */
?>
<div class="tvd-col tvd-s6 tvd-ms6 tvd-m4 tvd-l3 tvd-inactive-product" id="tvd-product-<?php echo $this->get_tag() ?>">
<div class="tvd-card tvd-gray tvd-medium tvd-disabled" data-state="inactive">
<div class="tvd-card-content">
<div class="tvd-center-align">
<img src="<?php echo $this->logoUrl; ?>" alt="" class="tvd-responsive-img">
</div>
<h2 class="tvd-card-title"><?php echo $this->title; ?></h2>
<p class="tvd-center">
<?php echo $this->description ?>
</p>
<div class="tvd-card-action">
<a class="tve-dash-show-license-form tvd-waves-effect tvd-waves-light tvd-btn tvd-btn-blue tvd-full-btn">
<?php echo __("Activate License", 'thrive-dash') ?>
</a>
</div>
</div>
</div>
<div class="tvd-card tvd-gray tvd-medium tvd-disabled" data-state="form" style="display: none;">
<div class="tvd-card-content">
<div class="tvd-center-align">
<img src="<?php echo $this->logoUrl; ?>" alt="<?php echo $this->title ?>"
class="tvd-responsive-img" height="50" width="50">
</div>
<h4 class="tvd-card-title"><?php echo __( "Enter your license details:", 'thrive-dash' ) ?></h4>
<form class="tve-dash-item-license-form tvd-col tvd-s12">
<div class="tvd-row">
<div class="tvd-input-field">
<input id="email-<?php echo $this->get_tag() ?>" type="email" name="email" class="tvd-validate" value="">
<label for="email-<?php echo $this->get_tag() ?>"><?php echo __( "Email address", 'thrive-dash' ) ?></label>
</div>
<div class="tvd-input-field">
<input id="license-<?php echo $this->get_tag() ?>" type="text" name="license" class="tvd-validate" value="">
<label for="license-<?php echo $this->get_tag() ?>"><?php echo __( "License key", 'thrive-dash' ) ?></label>
</div>
<input type="hidden" name="tag" value="<?php echo $this->get_tag() ?>">
</div>
<div class="tvd-card-action">
<button type="submit"
class="tve-dash-item-license-btn tvd-waves-light tvd-btn tvd-btn-blue tvd-full-btn">
<?php echo __( "Validate", 'thrive-dash' ) ?>
</button>
<button type="button"
class="tve-dash-show-inactive-state tvd-btn-flat tvd-btn-flat-secondary tvd-btn-flat-dark tvd-full-btn tvd-btn-margin-top tvd-waves-effect">
<?php echo __( "Cancel", 'thrive-dash' ) ?>
</button>
</div>
</form>
</div>
</div>
<div class="tvd-card tvd-green tvd-medium" data-state="success" style="display: none;">
<div class="tvd-card-content">
<div class="tvd-center-align">
<img src="<?php echo $this->logoUrlWhite ?>" alt="<?php echo $this->title ?>" class="tvd-responsive-img">
</div>
<div class="tvd-center-align">
<i class="tvd-icon-check tvd-icon-large tvd-icon-top"></i>
</div>
<h2 class="tvd-center"><?php echo __("License Activated", 'thrive-dash') ?></h2>
</div>
</div>
<div class="tvd-card tvd-orange tvd-medium" data-state="error" style="display: none;">
<div class="tvd-card-content">
<div class="tvd-center-align">
<img src="<?php echo $this->logoUrlWhite ?>" width="70" alt="<?php echo $this->title ?>" class="tvd-responsive-img">
</div>
<h3 class="tvd-card-title">
<?php echo __("We weren't able to validate your license.", 'thrive-dash') ?>
</h3>
<p class="tvd-center tvd-card-spacer">
<?php echo __("Reason:", 'thrive-dash') ?> <span class="tvd-license-error"></span>
</p>
</div>
<div class="tvd-card-action">
<div class="tvd-row tvd-no-margin">
<div class="tvd-col tvd-s12 tvd-m6">
<a class="tve-dash-show-inactive-state tvd-btn-flat tvd-btn-flat-secondary tvd-btn-flat-light tvd-waves-effect">
<?php echo __("Cancel", 'thrive-dash') ?>
</a>
</div>
<div class="tvd-col tvd-s12 tvd-m6">
<a class="tve-dash-show-license-form tvd-btn-flat tvd-btn-flat-primary tvd-btn-flat-light tvd-waves-effect tvd-right">
<?php echo __("Retry", 'thrive-dash') ?>
</a>
</div>
</div>
</div>
</div>
</div>