@*
For more information on enabling MVC for empty projects, visit
https://go.microsoft.com/fwlink/?LinkID=397860
*@
@model WebApplication1.Models.SendEmailViewModel
@{
}
<form method="post" asp-action="SendEmail" asp-controller="Students">
<div class="form-group">
<h2>Send Email</h2>
</div>
<div class="form-group">
<label asp-for="Recipient" class="control-label"></label>
<input asp-for="Recipient" class="form-control" />
<span asp-validation-for="Recipient" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="Body" class="control-label"></label>
<input asp-for="Body" class="form-control" />
<span asp-validation-for="Body" class="text-danger"></span>
</div>
</form>