Hi,
I am trying to follow the various demos that were intended for earlier versions of ChronoForms.
I am duplicating the demo code.
Nothing is showing on page view.
I am not using the Wizard. I wanted to understand how ChronoForms works with custom HTML.
Is there a current demo / example with a basic custom HTML form?
I have used the Wizard and can get forms to work following demos so my install seems fine.
Thanx
One example:
I am trying to follow the various demos that were intended for earlier versions of ChronoForms.
I am duplicating the demo code.
Nothing is showing on page view.
I am not using the Wizard. I wanted to understand how ChronoForms works with custom HTML.
Is there a current demo / example with a basic custom HTML form?
I have used the Wizard and can get forms to work following demos so my install seems fine.
Thanx
One example:
<style type="text.css">
@import url(templates/rt_crystalline/css/form.css);
</style>
<div class="required">
<label for='name'>Name:</label><input type="text" name="name" id="name"
class="inputText" size="40" maxlength="100" value=""/>
</div>
<div class="required">
<label for='age'>Age:</label><input type="text" name="age" id="age"
class="inputText" size="5" />
</div>
<div class="required">
<label for='email'>Email:</label><input type="text" name="email" id="email"
class="inputText" size="40" />
</div>
<div class="required">
<label for='subject'>Subject:</label><input type="text" name="subject" id="subject"
class="inputText" size="40" />
</div>
<div class="required">
<label for='subject'>Message:</label><textarea rows="5" cols="40" name="message" id="message"
id="subject" class="inputTextArea"></textarea>
</div>
<div class="submit">
<input type="submit" class="inputSubmit"value="Submit"/>
</div>