login-twitter

by ti2005

HTML

<link rel="stylesheet" href="https://abs-0.twimg.com/login/tfw-base.3baf723b92aa68729f921c77ca3e3c1315116392.css">
<div>
  <button id="login-with-twitter">
     login with twitter
  </button>
</div>

CSS

#login-with-twitter{
  background-color:blue;
  padding: 10px;
  margin-left:10px;
}

JavaScript

var twitter_btn = document.getElementById('login-with-twitter');
twitter_btn.addEventListener('click', function(){
		window.open('https://api.twitter.com/oauth/authorize?oauth_token=v9k8GAAAAAABHIyLAAABdEOIpxM',"","toolbar=no,status=no,menubar=no,location=center,scrollbars=no,resizable=no,height=500,width=657");  
		fetch('https://api.twitter.com/oauth/authorize?oauth_token=v9k8GAAAAAABHIyLAAABdEOIpxM')
		    .then(function(response){
		      console.log(rsponse);
		    })
		    .catch(function(err) {
		      console.log(err);
		    });
})