Created
November 5, 2012 21:31
-
-
Save likethesky/4020454 to your computer and use it in GitHub Desktop.
Cantango Demo -- goes in public/index.html of cantango_demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%h1 Welcome to the CanTango Demo | |
%td= link_to("Home", root_path) | |
%td= link_to("Sign in", new_user_session_path) | |
%td= link_to("Sign up", new_user_registration_path) | |
%td= link_to("Sign out", destroy_user_session_path, :method => :delete) | |
%td= link_to("User forgot password", new_user_password_path) | |
%br | |
%br | |
%td= link_to("Admin home", admin_dashboard_path) | |
%td= link_to("Admin login", new_admin_user_session_path) | |
%td= link_to("Admin logout", destroy_admin_user_session_path, :method => :delete) | |
%td= link_to("Admin forgot password", new_admin_user_password_path) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment