Files
vivespos-landing/modules/backend/controllers/auth/reset.php
avives 1f72193a64
Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
feat: VivesPOS landing on Winter CMS 1.2 — theme + plugin + Dockerfile
- Base: wintercms/winter branch 1.2 (full framework)
- Theme vivespos: Canvas 7 + Bootstrap 5 CDN, custom CSS
- Layout: deferred GTM/GA4 tracking, JSON-LD SoftwareApplication
- Partials: hero (offline-first), features, modes (offline/nube toggle),
  screenshots, pricing (3 planes), comparison, FAQ, CTA
- Plugin VivesPOS.Site with ContactForm
- Dockerfile: PHP 8.2 Apache, port 80, healthcheck
- Added winter/wn-pages, blog, sitemap, seo plugins
- Active theme set to vivespos
2026-08-21 19:29:00 -06:00

34 lines
1.2 KiB
PHP

<h2><?= e(trans('backend::lang.account.enter_new_password')) ?></h2>
<?= Form::open() ?>
<input type="hidden" name="postback" value="1" />
<input type="hidden" name="id" value="<?= e($id) ?>" />
<input type="hidden" name="code" value="<?= e($code) ?>" />
<div class="form-elements" role="form">
<div class="form-group text-field horizontal-form">
<!-- Password -->
<input
type="password"
name="password"
value=""
class="form-control password icon lock"
placeholder="<?= e(trans('backend::lang.account.password_placeholder')) ?>"
autocomplete="off"
maxlength="255" />
<!-- Submit Login -->
<button type="submit" class="btn btn-primary pull-right">
<?= e(trans('backend::lang.account.reset')) ?>
</button>
</div>
<p class="pull-right forgot-password">
<a href="<?= Backend::url('backend/auth') ?>" class="text-muted">
<?= e(trans('backend::lang.form.cancel')) ?>
</a>
</p>
</div>
<?= Form::close() ?>