Plain is headed towards 1.0! Subscribe for development updates →

plain-support

Captcha...

Security considerations

Most support forms allow you to type in an email address. Be careful, because anybody can pretend to be anybody else at this point. Converations either need to continue over email (which confirms they have access to the email account), or include a verification step (emailing a code to the email address, for example).

 1from plain.urls import path
 2
 3from . import views
 4
 5default_namespace = "support"
 6
 7
 8urlpatterns = [
 9    path("form/<slug:form_slug>.js", views.SupportFormJSView),
10    path("form/<slug:form_slug>/iframe/", views.SupportIFrameView, name="iframe"),
11    path("form/<slug:form_slug>/", views.SupportFormView, name="form"),
12]