Awesome
Volt User Templates
Volt user templates provide out of the box templates for users to signup, login, and logout. (Forgot password coming soon)
Install
volt-user_templates now ships with volt, but if you have removed it, you can add it back with the following:
In your Gemfile, put:
gem 'volt-user_templates'
Then in any component you want to use the templates in, add the following to config/dependencies.rb
component 'user_templates'
Use
You can use volt-user-template two different ways.
- You can add routes for it's templates
Add the following to your main components route file:
client '/signup', component: 'user_templates', controller: 'signup'
client '/password_reset', component: 'user_templates', controller: 'password_reset', action: 'index'
client '/forgot', component: 'user_templates', controller: 'login', action: 'forgot'
client '/login', component: 'user_templates', controller: 'login', action: 'index'
client '/account', component: 'user_templates', controller: 'account', action: 'index'
Now you can link to /signup and /login
- You can include the templates as tags:
Login
<:user_templates:login post-login-url="/" />
The login template takes an optional post-login-url that will be redirected to after a successful login.
Signup
<:user_templates:signup post-signup-url="/" />
Signup takes an optional post-signup-url that will be redirected to after signup.
Forgot
<:user_templates:login:forgot post-forgot-url="/login" />
Logout
volt-user_templates provides a nav bar tag that provides a login/logout link and shows the users name.
<:user_templates:menu />