Error
The authenticity of host 'github.com (140.82.113.4)' can't be established.
Fix
ssh-keyscan github.com >> ~/.ssh/known_hostsError
The authenticity of host 'github.com (140.82.113.4)' can't be established.
Fix
ssh-keyscan github.com >> ~/.ssh/known_hosts| <template> | |
| <div> | |
| <button class="button" @click="logInWithFacebook"> Login with Facebook</button> | |
| </div> | |
| </template> | |
| <script> | |
| export default { | |
| name:"facebookLogin", | |
| methods: { |
| <style> | |
| input[type="file"]{ | |
| position: absolute; | |
| top: -500px; | |
| } | |
| div.file-listing{ | |
| width: 200px; | |
| } |
#Simple Authentication with Bcrypt
This tutorial is for adding authentication to a vanilla Ruby on Rails app using Bcrypt and has_secure_password.
The steps below are based on Ryan Bates's approach from Railscast #250 Authentication from Scratch (revised).
You can see the final source code here: repo. I began with a stock rails app using rails new gif_vault
##Steps
| // http://stackoverflow.com/questions/18432577/stacked-tabs-in-bootstrap-3 | |
| .tabs-below, .tabs-right, .tabs-left { | |
| .nav-tabs { | |
| border-bottom: 0; | |
| } | |
| } | |
| .tab-content > .tab-pane, | |
| .pill-content > .pill-pane { | |
| display: none; |