Prettier for PUG templates (#26170)
* Setup prettier * Ignore these pug templates by prettier * Fix typo * Fix prettier error * Add prettier-ignore for quoting of event-segmentation attribute * Manual tab indentation * Interpolate * Remove unbuffered if conditional * Inline event-segmentation objects and remove prettier-ignore rule * Fix spacing before interpolation * Source format * Source format GitOrigin-RevId: c30e037f5caf8f91efc1bd9e75f81ae533b5a506
This commit is contained in:
@@ -6,14 +6,14 @@ block vars
|
||||
include ../../../../../app/views/_mixins/material_symbol
|
||||
|
||||
block content
|
||||
main.content.content-alt#main-content
|
||||
main#main-content.content.content-alt
|
||||
.container
|
||||
div.col-lg-6.col-xl-4.m-auto
|
||||
.col-lg-6.col-xl-4.m-auto
|
||||
.notification-list
|
||||
.notification.notification-type-success(aria-live="off" role="alert")
|
||||
.notification.notification-type-success(aria-live='off' role='alert')
|
||||
.notification-content-and-cta
|
||||
.notification-icon
|
||||
+material-symbol("check_circle")
|
||||
+material-symbol('check_circle')
|
||||
.notification-content
|
||||
p
|
||||
| #{translate("nearly_activated")}
|
||||
@@ -21,12 +21,12 @@ block content
|
||||
h1.h3 #{translate("please_set_a_password")}
|
||||
|
||||
form(
|
||||
name='activationForm'
|
||||
data-ol-async-form
|
||||
name="activationForm",
|
||||
action="/user/password/set",
|
||||
method="POST",
|
||||
action='/user/password/set'
|
||||
method='POST'
|
||||
)
|
||||
+formMessages()
|
||||
+formMessages
|
||||
|
||||
+customFormMessage('token-expired', 'danger')
|
||||
| #{translate("activation_token_expired")}
|
||||
@@ -34,43 +34,39 @@ block content
|
||||
+customFormMessage('invalid-password', 'danger')
|
||||
| #{translate('invalid_password')}
|
||||
|
||||
input(name='_csrf', type='hidden', value=csrfToken)
|
||||
input(
|
||||
type="hidden",
|
||||
name="passwordResetToken",
|
||||
value=token
|
||||
)
|
||||
input(name='_csrf' type='hidden' value=csrfToken)
|
||||
input(name='passwordResetToken' type='hidden' value=token)
|
||||
|
||||
.form-group
|
||||
label(for='emailField') #{translate("email")}
|
||||
input.form-control#emailField(
|
||||
aria-label="email",
|
||||
type='email',
|
||||
name='email',
|
||||
placeholder="email@example.com",
|
||||
autocomplete="username"
|
||||
input#emailField.form-control(
|
||||
name='email'
|
||||
aria-label='email'
|
||||
type='email'
|
||||
placeholder='email@example.com'
|
||||
autocomplete='username'
|
||||
value=email
|
||||
required,
|
||||
required
|
||||
disabled
|
||||
)
|
||||
.form-group
|
||||
label(for='passwordField') #{translate("password")}
|
||||
input.form-control#passwordField(
|
||||
type='password',
|
||||
name='password',
|
||||
placeholder="********",
|
||||
autocomplete="new-password",
|
||||
autofocus,
|
||||
required,
|
||||
input#passwordField.form-control(
|
||||
name='password'
|
||||
type='password'
|
||||
placeholder='********'
|
||||
autocomplete='new-password'
|
||||
autofocus
|
||||
required
|
||||
minlength=settings.passwordStrengthOptions.length.min
|
||||
)
|
||||
.actions
|
||||
button.btn.btn-primary(
|
||||
type='submit',
|
||||
type='submit'
|
||||
data-ol-disabled-inflight
|
||||
aria-label=translate('activate')
|
||||
)
|
||||
span(data-ol-inflight="idle")
|
||||
span(data-ol-inflight='idle')
|
||||
| #{translate('activate')}
|
||||
span(hidden data-ol-inflight="pending")
|
||||
span(hidden data-ol-inflight='pending')
|
||||
| #{translate('activating')}…
|
||||
|
||||
@@ -4,9 +4,9 @@ block entrypointVar
|
||||
- entrypoint = 'modules/user-activate/pages/user-activate-page'
|
||||
|
||||
block append meta
|
||||
meta(name="ol-user" data-type="json" content=user)
|
||||
meta(name='ol-user' data-type='json' content=user)
|
||||
|
||||
block content
|
||||
.content.content-alt#main-content
|
||||
#main-content.content.content-alt
|
||||
.container
|
||||
#user-activate-register-container
|
||||
|
||||
Reference in New Issue
Block a user