blob: 58aa0b019c1d037849c64c6abec72ad0eee3b45d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php if (isset($key)): ?>
Confirmation Link: <a href="<?=$link ?>/<?=$key->key ?>"> Link </a>
<?php else: ?>
<?php if(isset($user)): ?>
<?=$this->form->create($user); ?>
<?php else: ?>
<?=$this->form->create(); ?>
<?php endif; ?>
<?=$this->form->field('username'); ?>
<?=$this->form->field('password', array('type' => 'password')); ?>
<?=$this->form->field('email'); ?>
<!-- This needs to be moved to the admin panel
<?=$this->form->select('level', array('User' => 'User', 'Mod' => 'Mod', 'Admin' => 'Admin', 'root' => 'Root'), array('value' => 1)); ?>
-->
<?=$this->form->submit('Signup!'); ?>
<?=$this->form->end(); ?>
<?php endif; ?>
|