Created
May 11, 2017 09:30
-
-
Save ErikHen/f83826dfd95d90255268d1445df0c10a to your computer and use it in GitHub Desktop.
Episerver Mixed-mode auth. Login view
This file contains 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
@{ Layout = null; } | |
@model MyNamespace.Models.LoginViewModel | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Log in</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta name="robots" content="noindex,nofollow" /> | |
</head> | |
<body> | |
<div class="login"> | |
@using (Html.BeginForm()) | |
{ | |
@Html.AntiForgeryToken() | |
@Html.ValidationSummary() | |
<div> | |
<div> | |
@Html.LabelFor(x => x.Username) | |
@Html.TextBoxFor(x => x.Username) | |
</div> | |
<div> | |
@Html.LabelFor(x => x.Password) | |
@Html.PasswordFor(x => x.Password) | |
</div> | |
<div> | |
<input type="submit" value="Log in"/> | |
</div> | |
</div> | |
} | |
@using (Html.BeginForm("AdfsLogin", "Login", new {ReturnUrl = Request.QueryString["ReturnUrl"]})) | |
{ | |
@Html.AntiForgeryToken() | |
<div class="linkwrapper"> | |
<a onclick="document.forms.item(1).submit();">Log in with your AD account</a> | |
</div> | |
} | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment