Slides
Learn how to create slides, conditionally show slides with logic jumps, handle page progress, configure partial or slide-level submissions, etc.
How to create slides
Conditionally show slides using logic jumps
specialty* = ChoiceInput(
| question = What is your specialty?
| description =
This will help us with your placement on our team.
| choices = Back-end, Front-end, Full-stack
)
---
-> specialty == "Back-end"
At this stage, we're only hiring engineers who have front-end
expertise. Sorry for the inconvenience.
---
-> specialty == "Front-end" or specialty == "Full-stack"
expertise* = SelectBox(
| question = What is your level of expertise?
| description =
Choose the level of experience you have in the
industry. Again, this will help with your placement.
| options = Junior, Mid-level, Senior
)Page progress
Partial or slide-level submissions
Slide action button alignment
Disable previous button
Start slides
End slide
Redirect from end slide
Last updated