Forms & Validation
Forms in Account Pages
<pz-form class="js-change-email-form a-ce-form" service="User" action="changeEmail">
<pz-label>
{{ _('New email address') }}*
<pz-input
type="email"
name="email"
w-full
v-required
v-email>
</pz-input>
</pz-label>
<pz-label>
{{ _('Re-enter your new email address') }}*
<pz-input
type="email"
name="email_repeat"
w-full
v-required
v-email>
</pz-input>
</pz-label>
<pz-label>
{{ _('Your password') }}*
<pz-input
type="password"
name="password"
w-full
v-required>
</pz-input>
</pz-label>
<pz-button type="submit" size="lg">
{{ _('Change Email Address') }}
</pz-button>
</pz-form>Validations
PzForm Actions
Last updated
Was this helpful?

