wootook-reloaded/application/design/frontend/base/default/scripts/user/registration.phtml
Gregory PLANCHAT 66805034a6 Configuration & Layout architecture updates
Fixed production bug
Fixed styles
Updated Action Controller

Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
2012-01-13 23:36:03 +01:00

37 lines
No EOL
1.4 KiB
PHTML

<form action="reg.php" method="post" class="form registration">
<h1>Wootook!</h1>
<fieldset>
<legend><?php echo $this->__('User data:')?></legend>
<p>
<label for="register:username"><?php echo $this->__('Username:')?></label>
<input type="text" name="username" id="register:username" />
</p>
<p>
<label for="register:email"><?php echo $this->__('Email:')?></label>
<input type="text" name="email" id="register:email" />
</p>
<p>
<label for="register:email_confirm"><?php echo $this->__('Confirm email:')?></label>
<input type="text" name="email_confirm" id="register:email_confirm" />
</p>
</fieldset>
<fieldset>
<legend><?php echo $this->__('Password:')?></legend>
<p>
<label for="register:username"><?php echo $this->__('Password:')?></label>
<input type="password" name="password" id="register:password" />
</p>
<p>
<label for="register:username"><?php echo $this->__('Confirm password:')?></label>
<input type="password" name="password_confirm" id="register:password_confirm" />
</p>
</fieldset>
<fieldset>
<legend><?php echo $this->__('Planet:')?></legend>
<p>
<label for="register:planet_name"><?php echo $this->__('Planet name:')?></label>
<input type="text" name="planet_name" id="register:planet_name" />
</p>
</fieldset>
<input type="submit" value="<?php echo $this->__('Register!')?>" />
</form>