summaryrefslogtreecommitdiff
path: root/lib/generators/nifty/authentication/templates/views/haml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/generators/nifty/authentication/templates/views/haml')
-rw-r--r--lib/generators/nifty/authentication/templates/views/haml/_form.html.haml16
-rw-r--r--lib/generators/nifty/authentication/templates/views/haml/edit.html.haml3
-rw-r--r--lib/generators/nifty/authentication/templates/views/haml/login.html.haml26
-rw-r--r--lib/generators/nifty/authentication/templates/views/haml/signup.html.haml5
4 files changed, 50 insertions, 0 deletions
diff --git a/lib/generators/nifty/authentication/templates/views/haml/_form.html.haml b/lib/generators/nifty/authentication/templates/views/haml/_form.html.haml
new file mode 100644
index 0000000..992ee9c
--- /dev/null
+++ b/lib/generators/nifty/authentication/templates/views/haml/_form.html.haml
@@ -0,0 +1,16 @@
+= form_for @<%= user_singular_name %> do |f|
+ = f.error_messages
+ .field
+ = f.label :username
+ = f.text_field :username
+ .field
+ = f.label :email, "Email Address"
+ = f.text_field :email
+ .field
+ = f.label :password
+ = f.password_field :password
+ .field
+ = f.label :password_confirmation, "Confirm Password"
+ = f.password_field :password_confirmation
+ .actions
+ = f.submit (@<%= user_singular_name %>.new_record? ? "Sign up" : "Update")
diff --git a/lib/generators/nifty/authentication/templates/views/haml/edit.html.haml b/lib/generators/nifty/authentication/templates/views/haml/edit.html.haml
new file mode 100644
index 0000000..4b43a3b
--- /dev/null
+++ b/lib/generators/nifty/authentication/templates/views/haml/edit.html.haml
@@ -0,0 +1,3 @@
+- title "Sign up"
+
+= render "form"
diff --git a/lib/generators/nifty/authentication/templates/views/haml/login.html.haml b/lib/generators/nifty/authentication/templates/views/haml/login.html.haml
new file mode 100644
index 0000000..22fc95b
--- /dev/null
+++ b/lib/generators/nifty/authentication/templates/views/haml/login.html.haml
@@ -0,0 +1,26 @@
+- title "Log in"
+
+%p== Don't have an account? #{link_to "Sign up!", signup_path}
+
+<%- if options[:authlogic] -%>
+= form_for @<%= session_singular_name %> do |f|
+ = f.error_messages
+ .field
+ = f.label :username
+ = f.text_field :username
+ .field
+ = f.label :password
+ = f.password_field :password
+ .actions
+ = f.submit "Log in"
+<%- else -%>
+- form_tag <%= session_plural_name %>_path do
+ .field
+ = label_tag :login, "Username or Email Address"
+ = text_field_tag :login, params[:login]
+ .field
+ = label_tag :password
+ = password_field_tag :password
+ .actions
+ = submit_tag "Log in"
+<%- end -%>
diff --git a/lib/generators/nifty/authentication/templates/views/haml/signup.html.haml b/lib/generators/nifty/authentication/templates/views/haml/signup.html.haml
new file mode 100644
index 0000000..dc75c13
--- /dev/null
+++ b/lib/generators/nifty/authentication/templates/views/haml/signup.html.haml
@@ -0,0 +1,5 @@
+- title "Sign up"
+
+%p== Already have an account? #{link_to "Log in", login_path}.
+
+= render "form"