I've two controllers:
MainController with pages: index.html.erb
LoginController with pages: login.html.erb, signup.html.erb, pasfor.html.erb
These are my routes
https://gyazo.com/4acf99c74bbb7999d580e32fd1496386
I created
<%= link_to '<li id="login-button"><i class="fa fa-plus"> Create event</i></li>'.html_safe, login_login_path %>
This would redirect from index.html.erb to login.html.erb
I want to set up a button in login.html.erb that's redirect to signup.html.erb. So I did the same thing. The button is there but when I click nothing happens.
<%= link_to '<button type="submit" class="btn btn-default">Register</button>'.html_safe, login_signup_path %>