Created
January 4, 2017 18:31
-
-
Save AbubakarSiddiq/035c789cd3c06a8b27bdeaa243fa4d95 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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