44 lines
1.5 KiB
Plaintext
44 lines
1.5 KiB
Plaintext
@using BeWoPlanerMobil.Models;
|
|
|
|
@model LoginModel
|
|
@{
|
|
ViewBag.Title = "Login";
|
|
|
|
var usernameDef = String.Empty;
|
|
var pwDef = String.Empty;
|
|
}
|
|
|
|
<img src="~/Content/images/bewoplaner_logo_big.png" alt="BeWoPlanerMobil" class="centerImg"/>
|
|
|
|
<div class="margin-div">
|
|
<h4 id="errorMessageHeading" class="error-text">@ViewData["LoginErrorIndex"]</h4>
|
|
|
|
@using (Html.BeginForm("Index", "Login", FormMethod.Post, new { @onsubmit = "showSanduhr(); return true;" }))
|
|
{
|
|
<div class="input-wrapper input-wrapper-w-margin">
|
|
<input class="floating-label-input" type="text" id="tb_tenant" name="tb_tenant" value="@LoginModel.Tenant" required/>
|
|
<label class="floating-label" for="tb_tenant">Kundennummer</label>
|
|
</div>
|
|
|
|
<div class="input-wrapper input-wrapper-w-margin">
|
|
<input class="floating-label-input" type="text" id="tb_login" name="tb_login" value="@usernameDef" required/>
|
|
<label class="floating-label" for="tb_login">Benutzername</label>
|
|
</div>
|
|
|
|
<div class="input-wrapper input-wrapper-w-margin">
|
|
<input class="floating-label-input" type="password" id="tb_password" name="tb_password" value="@pwDef" required/>
|
|
<label class="floating-label" for="tb_password">Passwort</label>
|
|
</div>
|
|
|
|
<input type="submit" value="Login" />
|
|
}
|
|
</div>
|
|
|
|
<img class="warte-animation" alt="Lade..." src="@Url.Content("~/Content/images/spinner.png")" >
|
|
|
|
<div class="modalWrapper">
|
|
</div>
|
|
|
|
<script>
|
|
loadGoalsUrl = '';
|
|
</script> |