2018-12-08 19:27:21 +01:00
|
|
|
@model MailSender.Models.MailModel
|
2018-12-16 13:35:41 +01:00
|
|
|
@{
|
2018-12-13 23:05:57 +01:00
|
|
|
//ViewBag.Title = "Mail Sender";
|
2018-12-08 19:27:21 +01:00
|
|
|
}
|
2018-12-13 23:05:57 +01:00
|
|
|
|
2018-12-08 19:27:21 +01:00
|
|
|
|
2018-12-09 02:20:46 +01:00
|
|
|
@if (ViewData.ContainsKey("mailErr"))
|
|
|
|
{
|
|
|
|
<h3>Error: @ViewData["mailErr"]</h3>
|
|
|
|
}
|
2018-12-08 19:27:21 +01:00
|
|
|
|
2018-12-18 15:42:39 +01:00
|
|
|
@using (Html.BeginForm("Send", "Home", FormMethod.Post))
|
2018-12-08 19:27:21 +01:00
|
|
|
{
|
|
|
|
<div class="form-group">
|
|
|
|
@Html.LabelFor(i => i.Subject, new { @class = "label-form" })
|
2018-12-18 15:42:39 +01:00
|
|
|
@Html.EditorFor(i => i.Subject, new { htmlAttributes = new { @value = Model.Subject, @class = "form-control form-emailsend", @placeholder = "Temat" } })
|
2018-12-09 02:20:46 +01:00
|
|
|
@Html.ValidationMessageFor(i => i.Subject)
|
2018-12-08 19:27:21 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
@Html.LabelFor(i => i.EMailTo, new { @class = "label-form" })
|
2018-12-18 15:42:39 +01:00
|
|
|
@Html.EditorFor(i => i.EMailTo, new { htmlAttributes = new { @value = Model.EMailTo, @class = "form-control form-emailsend", @placeholder = "Do" } })
|
2018-12-09 02:20:46 +01:00
|
|
|
@Html.ValidationMessageFor(i => i.EMailTo)
|
2018-12-08 19:27:21 +01:00
|
|
|
</div>
|
|
|
|
|
2018-12-13 23:05:57 +01:00
|
|
|
<div class="form-group" >
|
2018-12-08 19:27:21 +01:00
|
|
|
@Html.LabelFor(i => i.Content, new { @class = "label-form" })
|
2018-12-18 15:42:39 +01:00
|
|
|
@Html.EditorFor(i => i.Content, new { htmlAttributes = new { @value = Model.Content, @class = "form-control", @id = "exampleFormControlTextarea3", @rows=9, @placeholder = "Odpowiedź" } })
|
2018-12-09 02:20:46 +01:00
|
|
|
@Html.ValidationMessageFor(i => i.Content)
|
2018-12-08 19:27:21 +01:00
|
|
|
</div>
|
|
|
|
|
2018-12-18 15:42:39 +01:00
|
|
|
<input type="submit" value="Wyślij" class="answer-list__add-btn answer-list__add-btn--sendButton" />
|
2018-12-09 02:20:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@section Scripts {
|
|
|
|
@Scripts.Render("~/bundles/jqueryval")
|
2018-12-08 19:27:21 +01:00
|
|
|
}
|