| 12345678910111213141516171819202122232425262728293031 |
- @{
- Layout = "~/Views/Shared/_Layout.cshtml";
- }
- @using MVCTemplate.Business.Infrastructure
- @model MessageModel
-
- <div class="text-center">
- <form method="post" asp-controller="Home" asp-action="CreateMessage">
- <input asp-for="Text" />
- <br>
-
-
- <input type="radio" asp-for="ChosenPeriod" value="@PeriodOfValidity.ONE_TIME" /> ONE TIME
- <br>
-
- <input type="radio" asp-for="ChosenPeriod" value="@PeriodOfValidity.ONE_HOUR" /> ONE HOUR
- <br>
-
- <input type="radio" asp-for="ChosenPeriod" value="@PeriodOfValidity.ONE_DAY" /> ONE DAY
- <br>
-
- <input type="radio" asp-for="ChosenPeriod" value="@PeriodOfValidity.ONE_WEEK" /> SEVEN DAYS
- <br>
-
- <button class = " btn btn-light" type="submit">Send</button>
- </form>
- <br>
-
-
-
- </div>
|