Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AbubakarSiddiq/035c789cd3c06a8b27bdeaa243fa4d95 to your computer and use it in GitHub Desktop.
Save AbubakarSiddiq/035c789cd3c06a8b27bdeaa243fa4d95 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using TwoFactorAuthenticationDemo.Models;
using Google.Authenticator;
namespace TwoFactorAuthenticationDemo.Controllers
{
public class HomeController : Controller
{
private const string key = "qazqaz12345"; //You can add your own Key
public ActionResult Login()
{
return View();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment