diff --git a/templates/join.phtml b/templates/join.phtml index 4323f80..afc4b46 100644 --- a/templates/join.phtml +++ b/templates/join.phtml @@ -1,5 +1,5 @@
-

Sign up

+

Sign up Fast and free!

html->div( array('class' => 'form-group'), @@ -22,6 +22,6 @@ )) ); ?> - +

By signing up you are agreeing to our Terms of Service and Privacy Policy.

diff --git a/templates/login.phtml b/templates/login.phtml index e69de29..b48185b 100644 --- a/templates/login.phtml +++ b/templates/login.phtml @@ -0,0 +1,26 @@ +
+

Sign in Welcome back!

+ html->div( + array('class' => 'form-group'), + $this->html->inputEmail(array( + 'label' => 'Email Address', + 'name' => 'email', + 'class' => 'form-control input-lg email required', + 'placeholder' => 'Enter your email', + )) + ); + + echo $this->html->div( + array('class' => 'form-group'), + $this->html->inputPassword(array( + 'label' => 'Password', + 'name' => 'password', + 'class' => 'form-control input-lg required', + 'minlength' => 8, + 'placeholder' => 'Enter your password', + )) + ); + ?> + +