/
kopython
/
_hyperscript-node
Обзор
Документация
Войти
/
kopython
/
_hyperscript-node
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
views/partials/edit-todo.hbs
34 строки
961 B
Drew McDonald
* real init commit
29 ноя 2022, 02:51
29 ноя 2022, 02:51
43e7026
Код
Авторство
О чём код?
<form name="todo-{{data.id}}"> <input type="hidden" name="id" value="{{data.id}}" /> <div class="card-body"> <div class="card-actions justify-between items-center mb-6"> <input name="name" value="{{data.name}}" type="text" placeholder="Type here" class="input input-bordered w-full max-w-xs" /> </div> <textarea name="description" class="textarea textarea-bordered" placeholder="Edit the description" >{{data.description}}</textarea> <div class="flex flex-col justify-between api-service-container relative mb-6" > </div> <hr class="my-2 md:min-w-full" /> <div class="flex flex-row justify-end gap-4"> <button class="btn btn-ghost" type="submit" hx-put="/html/todo/{{data.id}}" hx-target="#todo-container" ><i class="fa fa-save mr-2"></i> Save TODO </button> </div> </div> </form>