You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
593 B
29 lines
593 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title></title>
|
|
<link rel="stylesheet" href="app.css" />
|
|
<script defer src="app.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>New Trello</h1>
|
|
<ul></ul>
|
|
<template>
|
|
<li draggable="true">
|
|
<details>
|
|
<summary>placeholder</summary>
|
|
<ul></ul>
|
|
<button class="add">Add</button>
|
|
<button class="delete">Delete</button>
|
|
<form>
|
|
<input typ="text" placeholder="new value"/>
|
|
<input type="submit" value="Update"/>
|
|
<input type="reset" value="Reset"/>
|
|
</form>
|
|
</details>
|
|
</li>
|
|
</template>
|
|
</body>
|
|
</html>
|