Sentinel Forms Markup


Sentinel Markup for HTML Forms

Sentinel Form Markup converts simple descriptions of form controls and automatically converts this into a fully functiontal validated and secure html form.

The purpose of this module is to allow simple and easy creation and modifications of forms. No knowledge of programming or Html is required.


Basic Setup Parameters:

SendFormDataTo: yourName@yourMail.com
FormStyle: 1
' define your form width in px
FormWidth: 450
' or use percent sign to indicate percentage of width
' FormWidth: 100%
OnSubmitGoTo: http://yourSuccessPage.com
OnCancelGoTo: http://yourCancelPage.com

Define Input Types: text, email

' format for adding text, email (all separated by semi-colons)
' 1. type (see http://html5doctor.com/html5-forms-input-types/ for examples)
' 2. label
' 3. Placeholder value
' 4. percentage width as whole number 10 to 100 (no % sign)
' two fields on one line:
text; First Name*; First; 40; text; Last Name;  Last; 60
email; Email*; Please enter your email address; 100

Define Input Types: select (dropdown)

' format for adding select box (dropdown box) (all separated by semi-colons)
' 1. type (always 'select')
' 2. label
' 3. percentage width as whole number 10 to 100 (no % sign)
' 4., 5., ....   options (Add an * to any one option to make it the default selected option when form loads.)
' Last. 'end'. Marks the end of the options...
select; Choose One of These Colors*; 50; Red; Blue; Green; Indigo;Violet;Orange; Yellow; end; select; Choose Another Color; 50; Red; Blue; Green; Indigo;Violet*;Orange; Yellow; end
select; Choose a Color; 50; Red; Blue; Green; Indigo;Violet;Orange; Yellow; end

Sentinel Information