| 123456789101112131415161718192021222324252627282930 |
- @{
- Layout = "~/Views/Shared/_Layout.cshtml";
- }
- @using SecureSharing.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>
|