Gossamer Forum
Home : Products : DBMan SQL : Discussion :

signup_form.html

Quote Reply
signup_form.html
Hi,

I've used the signup_form.html default template and I've customized it a bit. I have a db with an "extended" user table which contains more fields than the standard user table fields. I've realized that once the form is reloaded (because a username already exists), it doesn't properly display the field content which has been entered before. The information stops with the first whitespace and the rest is missing. To fix this, I've altered the default template like this:

change from:
<input type="text" name="Name" value=<%if Name%><%Name%><%endif%>>

to:
<input type="text" name="Name" value="<%if Name%><%Name%><%endif%>">

You can repeat this for all the fields in the user table.

That's all. Wink


Cheers,
Oliver