I have created a form as follows:
invitation_form = FORM('Invitations List:',
TEXTAREA(_name='invitations', requires=IS_NOT_EMPTY()),
"Subject:", INPUT(_name='subject',
requires=IS_NOT_EMPTY()),
"Message:",
TEXTAREA(_name='message', requires=IS_NOT_EMPTY()),
INPUT(_type='submit', _value="Send"))
And it works...
but when it displays it doesn't look like the other forms.
For example when I have an SQLFORM it never shows like this. Is there a
way for me to:
1: Print the form easily like with SQLFORM
and
2: Print field that I have out to make a specially made form.
I would looking here in the book:
http://web2py.com/book/default/chapter/07#Custom-forms
But I couldn't apply the example here directly.
---
Best Regards,
Jason Brower