summaryrefslogtreecommitdiffstats
path: root/TwoStepsAuthenticator.TestWebsite/Views/Home/DoubleAuth.cshtml
blob: e864721d70c482007c8034daf59052faf457ad88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@model TwoStepsAuthenticator.TestWebsite.Users.WebsiteUser

@{
    ViewBag.Title = "DoubleAuth";
}

<h2>DoubleAuth</h2>

@using (Html.BeginForm("DoubleAuth", "Home", FormMethod.Post))
{
    <div>
        <input type="text" name="code" />
        <br />
        <input type="submit" value="Submit"/>
    </div>
}