HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/HKemperman/tcdebraken.nl/wwwroot/Views/Account/Index.cshtml
@{
    ViewBag.Title = "T.C. De Braken - Inloggen voor administrators";
}

<div class="p-5 mb-4 page-header">
    <div class="container">
        <h1>Inloggen voor administrators</h1>
    </div>
</div>

@if (!Request.IsAuthenticated)
{
    <div class="container" >
    <!-- If the user is not authenticated, display the sign-in button -->
    <a href="@Url.Action("SignIn", "Account")" style="text-decoration: none;">
        <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="300px" height="50px" viewBox="0 0 3278 522" class="SignInButton">
        <style type="text/css">
            .fil0:hover {
                fill: #4B4B4B;
            }

            .fnt0 {
                font-size: 260px;
                font-family: 'Segoe UI Semibold', 'Segoe UI';
                text-decoration: none;
            }
</style>
        <rect class="fil0" x="2" y="2" width="3174" height="517" fill="black" />



        <rect x="150" y="129" width="122" height="122" fill="#F35325" />



        <rect x="284" y="129" width="122" height="122" fill="#81BC06" />



        <rect x="150" y="263" width="122" height="122" fill="#05A6F0" />



        <rect x="284" y="263" width="122" height="122" fill="#FFBA08" />



        <text x="470" y="357" fill="white" class="fnt0">Sign in with Microsoft</text>
        </svg>
    </a>
    </div>
}

@if (!string.IsNullOrWhiteSpace(Request.QueryString["errormessage"]))
{
    <div style="background-color:red;color:white;font-weight: bold;">Error: @Request.QueryString["errormessage"]</div>
}