You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/integrations/builtin/core-nodes/n8n-nodes-base.formtrigger.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,6 +126,25 @@ Select **Add Option** to view more configuration options:
126
126
-**Use Workflow Timezone**: Turn on to use the timezone in the [Workflow settings](/workflows/settings.md) instead of UTC (default). This affects the value of the `submittedAt` timestamp in the node output.
127
127
-**Custom Form Styling**: Override the default styling of the public form interface with CSS. The field pre-populates with the default styling so you can change only what you need to.
128
128
129
+
## Customizing Form Trigger node behavior
130
+
131
+
### Format response text with line breaks
132
+
133
+
You can use one of the following methods to add line breaks to form response text:
134
+
135
+
• Use HTML formatting instead of plain text in the formSubmittedText field
136
+
• Replace newline characters (`\n`) with HTML break tags (`<br>`) before sending the response
137
+
• Consider using a custom HTML response page if you need more formatting control
138
+
139
+
### Restrict form access with authentication
140
+
141
+
You can use one of the following options to add authentication to your form:
142
+
143
+
• Use the OTP (One-Time Password) field with TOTP node validation for token-based authentication
144
+
• Add a Wait node with form authentication as a secondary form page
145
+
• Store hashed passwords in a database and compare against form submissions for validation
146
+
• Use external authentication providers like Google Forms if you need advanced authentication
147
+
129
148
## Templates and examples
130
149
131
150
<!-- see https://www.notion.so/n8n/Pull-in-templates-for-the-integrations-pages-37c716837b804d30a33b47475f6e3780 -->
0 commit comments