maliming
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
9 additions and
7 deletions
-
docs/en/Tutorials/Todo/Index.md
|
|
|
@ -412,14 +412,16 @@ Open the `Index.cshtml` file in the `Pages` folder of the *TodoApp.Web* project |
|
|
|
</abp-card-header> |
|
|
|
<abp-card-body> |
|
|
|
<!-- FORM FOR NEW TODO ITEMS --> |
|
|
|
<form id="NewItemForm" class="form-inline"> |
|
|
|
<input id="NewItemText" |
|
|
|
type="text" |
|
|
|
class="form-control mr-2" |
|
|
|
placeholder="enter text..."> |
|
|
|
<button type="submit" class="btn btn-primary">Submit</button> |
|
|
|
<form id="NewItemForm" class="row row-cols-lg-auto g-3 align-items-center"> |
|
|
|
<div class="col-12"> |
|
|
|
<div class="input-group"> |
|
|
|
<input id="NewItemText" type="text" class="form-control" placeholder="enter text..."> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="col-12"> |
|
|
|
<button type="submit" class="btn btn-primary">Submit</button> |
|
|
|
</div> |
|
|
|
</form> |
|
|
|
|
|
|
|
<!-- TODO ITEMS LIST --> |
|
|
|
<ul id="TodoList"> |
|
|
|
@foreach (var todoItem in Model.TodoItems) |
|
|
|
|