< Summary

Class:AspNetCoreGeneratedDocument.Areas_Identity_Pages_Account_Login
Assembly:MUNity.BlazorServer
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNity.BlazorServer\Areas\Identity\Pages\Account\Login.cshtml
Covered lines:0
Uncovered lines:7
Coverable lines:7
Total lines:78
Line coverage:0% (0 of 7)
Covered branches:0
Total branches:8
Branch coverage:0% (0 of 8)
Covered methods:0
Total methods:2
Method coverage:0% (0 of 2)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
ExecuteAsync()0%20%
<ExecuteAsync()0%60%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNity.BlazorServer\Areas\Identity\Pages\Account\Login.cshtml

#LineLine coverage
 1@page
 2@model LoginModel
 3
 4@{
 05    ViewData["Title"] = "Log in";
 6}
 7
 8<!-- begin login -->
 9<div class="login login-with-news-feed">
 10  <!-- begin news-feed -->
 11  <div class="news-feed">
 12    <div class="news-image" style="background-image: url(/img/login-bg/mun-bg-01.jpg)"></div>
 13    <div class="news-caption">
 14      <h4 class="caption-title"><b>MUNity</b></h4>
 015      <small>@System.Reflection.Assembly.GetEntryAssembly().GetName().Version</small>
 16      <p>
 17
 18      </p>
 19    </div>
 20  </div>
 21  <!-- end news-feed -->
 22
 23  <div class="login-container">
 24    <!-- begin login-header -->
 25    <div class="login-header mb-30px">
 26            <div class="brand">
 27                <div class="d-flex align-item-center">
 28                    @*<img src="/img/logo/icon_blue_small.png" height="25"/>*@ Login
 29                </div>
 30                <small>Anmledung in ein MUNity Account</small>
 31            </div>
 32      <div class="icon">
 33        <i class="oi oi-account-login"></i>
 34      </div>
 35    </div>
 36    <!-- end login-header -->
 37    <!-- begin login-content -->
 38    <div class="login-content">
 39      <form id="account" method="post" class="fs-13px">
 40        <div class="form-floating mb-15px">
 041          <input type="text" asp-for="Input.Username" class="form-control h-45px fs-13px" placeholder="Username" id="use
 42                    <label for="usernameInput" class="d-flex align-items-center fs-13px text-gray-600">Benutzername</lab
 43        </div>
 44                <div class="form-floating mb-15px">
 045                    <input type="password" asp-for="Input.Password" class="form-control h-45px fs-13px" placeholder="Pas
 46                    <label for="passwordInput" class="d-flex align-items-center fs-13px text-gray-600">Passwort</label>
 47                </div>
 48        <div class="form-check mb-30px">
 049          <input asp-for="Input.RememberMe" class="form-check-input" type="checkbox" id="remember_me_checkbox" />
 50          <label for="remember_me_checkbox" class="form-check-label">
 51          Angemeldet bleiben
 52          </label>
 53        </div>
 54
 055        @Html.ValidationSummary(true, "", new { @class = "text-danger"})
 56
 57        <div class="mb-15px">
 58          <button type="submit" class="btn btn-cyan d-block h-45px w-100 btn-lg fs-14px" >Anmelden</button>
 59        </div>
 60        <div class="mb-40px pb-40px text-inverse">
 61          Noch kein Konto? <a href="/Identity/Account/Register" class="text-primary">Jetzt registrieren!</a>
 62        </div>
 63        <hr />
 64        <p class="text-center text-grey-darker mb-0">
 065          &copy; MUNity All Right Reserved @DateTime.Now.Year
 66        </p>
 67      </form>
 68    </div>
 69    <!-- end login-content -->
 70  </div>
 71  <!-- end right-container -->
 72</div>
 73<!-- end login -->
 74
 75
 76@section Scripts {
 77    <partial name="_ValidationScriptsPartial" />
 78}

Methods/Properties

ExecuteAsync()
<ExecuteAsync()