Function Repository Resource:

MakeRegistrationForm

Source Notebook

Create a customizable registration form that is deployed to the Wolfram Cloud

Contributed by: Chris Fairfield

ResourceFunction["MakeRegistrationForm"][]

deploys a default registration form with fields for full name, job title and email address.

Details and Options

MakeRegistrationForm takes the following options:
"Title""Registration Form"specifies the title displayed on the form
"Description""Please fill out the form below to register"provides a description or instructions for the form
"ItemLayout""Vertical"determines the layout of form items, e.g., "Vertical" or "Inline"
"NotificationAddress"$CloudUserIDthe email address to which notifications are sent after form submissions
"CloudLocation"Automaticspecifies the cloud location where the form is deployed
"DownloadFormat""NB"defines the format for downloading the collected data, supported formats are "NB" and "XLSX"

Examples

Basic Examples

Create a simple registration form:

In[1]:=
ResourceFunction["MakeRegistrationForm"][]
Out[1]=

Customize the title and description fields:

In[2]:=
ResourceFunction["MakeRegistrationForm"][
 "Title" -> "Workshop Registration", "Description" -> "Register for the upcoming workshop by filling out the form below."]
Out[2]=

Specify item layout:

In[3]:=
ResourceFunction["MakeRegistrationForm"]["ItemLayout" -> "Inline"]
Out[3]=

Publisher

Chris Fairfield

Requirements

Wolfram Language 14.0 (January 2024) or above

Version History

  • 1.0.0 – 04 June 2025

License Information