diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/signup/index.html.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/views/signup/index.html.php b/views/signup/index.html.php index 6a00ff2..f7929f8 100644 --- a/views/signup/index.html.php +++ b/views/signup/index.html.php @@ -3,7 +3,10 @@ $this->styles($this->html->style("/css/login_signup.css")); if (isset($key)) { - echo "Confirmation Link: <a href=\"<?=$link ?>/<?=$key->key ?>\"> Link </a>"; + echo "Confirmation Link: "; + echo $this->html->link("Link", array('controller' => 'signup', + 'action' => 'confirm', + 'args' => $key->key)); } else { |