mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
@using System.Collections.Generic
|
|
@using Microsoft.AspNetCore.Http
|
|
@using Microsoft.AspNetCore.Http.Authentication
|
|
@model Squidex.Controllers.UI.Account.LoginVM
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<base href="/">
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Squidex - Login</title>
|
|
|
|
<link href="/styles/static.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<form asp-controller="Account" asp-action="External" asp-route-returnurl="@Model.ReturnUrl" method="post">
|
|
<div>
|
|
<p>
|
|
@foreach (var provider in Model.ExternalProviders)
|
|
{
|
|
<button class="redirect-button" type="submit" name="provider" id="loginButton" value="@provider.AuthenticationScheme" title="Log in using your @provider.DisplayName account">@provider.AuthenticationScheme</button>
|
|
}
|
|
</p>
|
|
</div>
|
|
</form>
|
|
|
|
<script>
|
|
document.getElementById("loginButton").click();
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|