Files
web-development/zoesch.de/galerie/themes/default/template/register.tpl
Felix Zösch 07c290a453 Initial commit: Backup der Webseiten
- zoesch.de
- blitzkiste.net
- gruene-hassberge (norbert.zoesch.de)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-13 01:17:15 +01:00

70 lines
2.2 KiB
Smarty

{if isset($MENUBAR)}{$MENUBAR}{/if}
<div id="registerPage">
<div id="content" class="content{if isset($MENUBAR)} contentWithMenu{/if}">
<div class="titrePage">
<ul class="categoryActions">
</ul>
<h2><a href="{$U_HOME}">{'Home'|@translate}</a>{$LEVEL_SEPARATOR}{'Registration'|@translate}</h2>
</div>
{include file='infos_errors.tpl'}
<form method="post" action="{$F_ACTION}" class="properties" name="register_form">
<fieldset>
<legend>{'Enter your personnal informations'|@translate}</legend>
<ul>
<li>
<span class="property">
<label for="login">* {'Username'|@translate}</label>
</span>
<input type="text" name="login" id="login" value="{$F_LOGIN}" >
</li>
<li>
<span class="property">
<label for="password">* {'Password'|@translate}</label>
</span>
<input type="password" name="password" id="password" >
</li>
<li>
<span class="property">
<label for="password_conf">* {'Confirm Password'|@translate}</label>
</span>
<input type="password" name="password_conf" id="password_conf" >
</li>
<li>
<span class="property">
<label for="mail_address">{if $obligatory_user_mail_address}* {/if}{'Email address'|@translate}</label>
</span>
<input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" >
{if not $obligatory_user_mail_address}
({'useful when password forgotten'|@translate})
{/if}
</li>
<li>
<span class="property">
<label for="send_password_by_mail">{'Send my connection settings by email'|@translate}</label>
</span>
<input type="checkbox" name="send_password_by_mail" id="send_password_by_mail" value="1" checked="checked">
</li>
</ul>
</fieldset>
<p class="bottomButtons">
<input type="hidden" name="key" value="{$F_KEY}" >
<input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
<input class="submit" type="reset" value="{'Reset'|@translate}">
</p>
</form>
<script type="text/javascript"><!--
document.register_form.login.focus();
//--></script>
</div> <!-- content -->
</div> <!-- registerPage -->