Files
Y3S1-Cloud_Systems_DevOps/ThAmCo-Stock/ThAmCo.Stock/Views/Account/Login.cshtml
2020-06-09 21:21:37 +01:00

17 lines
518 B
Plaintext

@{
ViewData["Title"] = "Login";
}
<h1>Login</h1>
<form asp-action="Login">
<div class="form-group">
<label for="emailInput">Username</label>
<input type="email" name="email" class="form-control" placeholder="Enter email">
</div>
<div class="form-group">
<label for="passwordInput">Password</label>
<input type="password" name="password" class="form-control" placeholder="Password">
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form>