Google sign-in clone developed using HTML CSS
Hope you like it
Do like and follow for more
A Pen by Uzair Zafar on CodePen.
| #include<iostream> | |
| #include<sstream> | |
| #include<cstdio> | |
| #include<cstdlib> | |
| #include<cmath> | |
| #include<cctype> | |
| #include<cstring> | |
| #include<vector> | |
| #include<list> | |
| #include<queue> |
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "io" | |
| "net" | |
| "net/http" | |
| ) |
| const admin = require('firebase-admin'); | |
| const auth = require('basic-auth') | |
| const functions = require('firebase-functions'); | |
| admin.initializeApp(functions.config().firebase); | |
| exports.webhook = functions.https.onRequest((req, res) => { | |
| // Check if api.ai provides a correct user/pass | |
| const credentials = auth(req); | |
| if (!credentials || credentials.name != 'username' || credentials.pass != 'password') { |
| ##### Set PATH ##### | |
| # Homebrew | |
| export PATH="$PATH:$HOME/homebrew/bin" | |
| # My Bin | |
| export PATH="$PATH:$HOME/bin" | |
| #################### | |
| ##### Add preminalry scripts & dependencies ##### | |
| # Add Homeshick | |
| if [[ ! -d "$HOME/.homesick/repos/homeshick" ]]; then | |
| git clone git://github.com/andsens/homeshick.git $HOME/.homesick/repos/homeshick |
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp( | |
| Center( | |
| child: Text( | |
| 'Hello, world!', | |
| textDirection: TextDirection.ltr, | |
| ), | |
| ), |
Google sign-in clone developed using HTML CSS
Hope you like it
Do like and follow for more
A Pen by Uzair Zafar on CodePen.