{* * $Revision: 1.10 $ * If you want to customize this file, do not edit it directly since future upgrades * may overwrite it. Instead, copy it into a new directory called "local" and edit that * version. Gallery will look for that file first and use it if it exists. *}

{g->text text="Register As New User"}

{g->text text="Username"} {g->text text="(required)"}

{if isset($form.error.userName.missing)}
{g->text text="You must enter a username"}
{/if} {if isset($form.error.userName.exists)}
{g->text text="Username '%s' already exists" arg1=$form.userName}
{/if}

{g->text text="Full Name"} {g->text text="(required)"}

{if isset($form.error.fullName.missing)}
{g->text text="You must enter your full name"}
{/if}

{g->text text="Email Address"} {g->text text="(required)"}

{if isset($form.error.email.missing)}
{g->text text="You must enter an email address"}
{/if} {if isset($form.error.email.invalid)}
{g->text text="Invalid email address"}
{/if}

{g->text text="Password"} {g->text text="(required)"}

{if isset($form.error.password1.missing)}
{g->text text="You must enter a password"}
{/if}

{g->text text="Verify Password"} {g->text text="(required)"}

{if isset($form.error.password2.missing)}
{g->text text="You must enter the password a second time"}
{/if} {if isset($form.error.password2.mismatch)}
{g->text text="The passwords you entered did not match"}
{/if}
{* Include our extra ItemAddOptions *} {foreach from=$UserSelfRegistration.plugins item=plugin} {include file="gallery:`$plugin.file`" l10Domain=$plugin.l10Domain} {/foreach}