42 lines
1.4 KiB
Plaintext
42 lines
1.4 KiB
Plaintext
@{
|
|
ViewData["Title"] = "Login";
|
|
Layout = null;
|
|
}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login Page</title>
|
|
<link href="~/assets/login/login.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<div class="login-box">
|
|
<h2>@ViewBag.appname</h2>
|
|
<form id="login-form" method="post" action="/">
|
|
<input type="hidden" name="returnUrl" value="@Context.Request.Query["ReturnUrl"]" />
|
|
<div style="text-align:center">
|
|
<span style="color:red">@ViewBag.ErrorMessage</span>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="bil_login_uname" name="bil_login_uname" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="bil_login_pass" name="bil_login_pass" required>
|
|
</div>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
<div class="signup-link">
|
|
Build Version: @ViewBag.Version
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|