create creation account form

This commit is contained in:
Manuel Raynaud
2013-07-01 16:16:24 +02:00
parent 6e29294418
commit 62a3dc3074
3 changed files with 41 additions and 39 deletions

View File

@@ -0,0 +1,27 @@
{include file="includes/header.html"}
{form name="thelia.customer.creation"}
<form method="post" action="index_dev.php?action=createCustomer" {form_enctype form=$form} >
{form_field_hidden form=$form}
{form_field form=$form.firstname}
{form_error form=$form.firstname}
{$message}
{/form_error}
<label> <span>{intl l="{$label}"} : </span></label><input type="text" name="{$name}" {$attr} >
{/form_field}
{form_field form=$form.lastname}
{form_error form=$form.lastname}
{$message}
{/form_error}
<label> <span>{intl l="{$label}"} : </span></label><input type="text" name="{$name}" {$attr} >
{/form_field}
<input type="submit" value="valider">
</form>
{/form}
{include file="includes/footer.html"}