yavsc/src/Yavsc/Views/Circle/Create.cshtml

34 lines
976 B
Text
Raw Normal View History

2019-01-01 16:28:47 +00:00
@model Circle
@{
2023-03-20 09:13:16 +00:00
ViewData["Title"] = "Create";
2019-01-01 16:28:47 +00:00
}
2023-03-20 09:13:16 +00:00
<h2>Create</h2>
2019-01-01 16:28:47 +00:00
<form asp-action="Create">
<div class="form-horizontal">
<h4>Circle</h4>
<hr />
2023-03-20 09:13:16 +00:00
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
2019-08-05 06:18:38 +02:00
<span asp-validation-for="OwnerId" class="text-danger" ></span>
<input asp-for="OwnerId" type="hidden" />
2019-01-01 16:28:47 +00:00
<div class="form-group">
<label asp-for="Name" class="col-md-2 control-label"></label>
<div class="col-md-10">
<input asp-for="Name" class="form-control" />
2019-06-22 19:34:39 +01:00
<span asp-validation-for="Name" class="text-danger" ></span>
2019-01-01 16:28:47 +00:00
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>
</div>
</form>
<div>
2023-03-20 09:13:16 +00:00
<a asp-action="Index">Back to List</a>
2019-01-01 16:28:47 +00:00
</div>