Files
overleaf-cep/services/web/app/views/general/post-gateway.pug
T
Rebeka Dekany c40ab3234d 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
2025-06-24 08:05:06 +00:00

23 lines
612 B
Plaintext

extends ../layout-marketing
block vars
- var suppressNavbar = true
- var suppressFooter = true
- var suppressSkipToContent = true
- var suppressCookieBanner = true
block content
.content.content-alt
.container
.row
.col-lg-6.offset-lg-3
.card
.card-body
p.text-center #{translate('processing_your_request')}
form(data-ol-regular-form data-ol-auto-submit method='POST')
input(name='_csrf' type='hidden' value=csrfToken)
input(name='viaGateway' hidden type='submit' value='true')
each name in Object.keys(form_data)
input(name=name type='hidden' value=form_data[name])