summaryrefslogtreecommitdiffstats
path: root/views/signup/index.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/signup/index.html.php')
-rw-r--r--views/signup/index.html.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/views/signup/index.html.php b/views/signup/index.html.php
new file mode 100644
index 0000000..5b26977
--- /dev/null
+++ b/views/signup/index.html.php
@@ -0,0 +1,17 @@
+<?php
+$this->styles($this->html->style("/css/signup.css"));
+?>
+
+<?php if (isset($key)): ?>
+Confirmation Link: <a href="<?=$link ?>/<?=$key->key ?>"> Link </a>
+<?php else: ?>
+<?=$this->flashMessage->output(); ?>
+
+
+<?=$this->form->create($user); ?>
+ <?=$this->form->field('username'); ?>
+ <?=$this->form->field('newpass', array('type' => 'password', 'label' => 'password')); ?>
+ <?=$this->form->field('email'); ?>
+ <?=$this->form->submit('Signup!'); ?>
+<?=$this->form->end(); ?>
+<?php endif; ?> \ No newline at end of file