Answers for "login with google css"

1

google sign in button

<div class='g-sign-in-button'>
    <div class=content-wrapper>
        <div class='logo-wrapper'>
            <img src='https://developers.google.com/identity/images/g-logo.png'>
        </div>
        <span class='text-container'>
      <span>Sign in with Google</span>
    </span>
    </div>
</div>

<style>
        *, *:before, *:after {
            box-sizing: border-box;
        }

        .g-sign-in-button {
            margin: 10px;
            display: inline-block;
            width: 240px;
            height: 50px;
            background-color: #4285f4;
            color: #fff;
            border-radius: 1px;
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
            transition: background-color .218s, border-color .218s, box-shadow .218s;
        }

        .g-sign-in-button:hover {
            cursor: pointer;
            -webkit-box-shadow: 0 0 3px 3px rgba(66, 133, 244, 0.3);
            box-shadow: 0 0 3px 3px rgba(66, 133, 244, 0.3);
        }

        .g-sign-in-button:active {
            background-color: #3367D6;
            transition: background-color 0.2s;
        }

        .g-sign-in-button .content-wrapper {
            height: 100%;
            width: 100%;
            border: 1px solid transparent;
        }

        .g-sign-in-button img {
            width: 18px;
            height: 18px;
        }

        .g-sign-in-button .logo-wrapper {
            padding: 15px;
            background: #fff;
            width: 48px;
            height: 100%;
            border-radius: 1px;
            display: inline-block;
        }

        .g-sign-in-button .text-container {
            font-family: Roboto,arial,sans-serif;
            font-weight: 500;
            letter-spacing: .21px;
            font-size: 16px;
            line-height: 48px;
            vertical-align: top;
            border: none;
            display: inline-block;
            text-align: center;
            width: 180px;
        }

</style>
Posted by: Guest on August-14-2020
1

html login with google

<html lang="en">
  <head>
    <meta name="google-signin-scope" content="profile email">
    <meta name="google-signin-client_id" content="YOUR_CLIENT_ID.apps.googleusercontent.com">
    <script src="https://apis.google.com/js/platform.js" async defer></script>
  </head>
  <body>
    <div class="g-signin2" data-onsuccess="onSignIn" data-theme="dark"></div>
    <script>
      function onSignIn(googleUser) {
        // Useful data for your client-side scripts:
        var profile = googleUser.getBasicProfile();
        console.log("ID: " + profile.getId()); // Don't send this directly to your server!
        console.log('Full Name: ' + profile.getName());
        console.log('Given Name: ' + profile.getGivenName());
        console.log('Family Name: ' + profile.getFamilyName());
        console.log("Image URL: " + profile.getImageUrl());
        console.log("Email: " + profile.getEmail());

        // The ID token you need to pass to your backend:
        var id_token = googleUser.getAuthResponse().id_token;
        console.log("ID Token: " + id_token);
      }
    </script>
  </body>
</html>
Posted by: Guest on October-09-2020
0

css sign in with google

<html><head>  <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">  <script src="https://apis.google.com/js/api:client.js"></script>  <script>  var googleUser = {};  var startApp = function() {    gapi.load('auth2', function(){      // Retrieve the singleton for the GoogleAuth library and set up the client.      auth2 = gapi.auth2.init({        client_id: 'YOUR_CLIENT_ID.apps.googleusercontent.com',        cookiepolicy: 'single_host_origin',        // Request scopes in addition to 'profile' and 'email'        //scope: 'additional_scope'      });      attachSignin(document.getElementById('customBtn'));    });  };  function attachSignin(element) {    console.log(element.id);    auth2.attachClickHandler(element, {},        function(googleUser) {          document.getElementById('name').innerText = "Signed in: " +              googleUser.getBasicProfile().getName();        }, function(error) {          alert(JSON.stringify(error, undefined, 2));        });  }  </script>  <style type="text/css">    #customBtn {      display: inline-block;      background: white;      color: #444;      width: 190px;      border-radius: 5px;      border: thin solid #888;      box-shadow: 1px 1px 1px grey;      white-space: nowrap;    }    #customBtn:hover {      cursor: pointer;    }    span.label {      font-family: serif;      font-weight: normal;    }    span.icon {      background: url('/identity/sign-in/g-normal.png') transparent 5px 50% no-repeat;      display: inline-block;      vertical-align: middle;      width: 42px;      height: 42px;    }    span.buttonText {      display: inline-block;      vertical-align: middle;      padding-left: 42px;      padding-right: 42px;      font-size: 14px;      font-weight: bold;      /* Use the Roboto font that is loaded in the <head> */      font-family: 'Roboto', sans-serif;    }  </style>  </head>  <body>  <!-- In the callback, you would hide the gSignInWrapper element on a  successful sign in -->  <div id="gSignInWrapper">    <span class="label">Sign in with:</span>    <div id="customBtn" class="customGPlusSignIn">      <span class="icon"></span>      <span class="buttonText">Google</span>    </div>  </div>  <div id="name"></div>  <script>startApp();</script></body></html>
Posted by: Guest on July-24-2021

Browse Popular Code Answers by Language