summaryrefslogtreecommitdiffstats
path: root/TwoStepsAuthenticator.TestWebsite/Views/Home/DoubleAuth.cshtml
diff options
context:
space:
mode:
Diffstat (limited to 'TwoStepsAuthenticator.TestWebsite/Views/Home/DoubleAuth.cshtml')
-rw-r--r--TwoStepsAuthenticator.TestWebsite/Views/Home/DoubleAuth.cshtml16
1 files changed, 16 insertions, 0 deletions
diff --git a/TwoStepsAuthenticator.TestWebsite/Views/Home/DoubleAuth.cshtml b/TwoStepsAuthenticator.TestWebsite/Views/Home/DoubleAuth.cshtml
new file mode 100644
index 0000000..e864721
--- /dev/null
+++ b/TwoStepsAuthenticator.TestWebsite/Views/Home/DoubleAuth.cshtml
@@ -0,0 +1,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>
+} \ No newline at end of file