mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
Updates a nunber of dependencies in a single PR. These were suggested by dependabot but updating them individually would mean the reposistory would be in a broken state until everything had merged. I'm not personally a huge fan of lowercasing doctype, but Prettier has taken an opinionated stance here and there is not a way to disable it: https://github.com/prettier/prettier/issues/15096
64 lines
1.7 KiB
HTML
64 lines
1.7 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Reading List Demo</title>
|
|
<link rel="stylesheet" href="index.css" />
|
|
<script defer src="index.js"></script>
|
|
</head>
|
|
<body>
|
|
<template id="table-item">
|
|
<tr>
|
|
<td><a>Title</a></td>
|
|
<td>
|
|
<select name="read" value="no">
|
|
<option value="no">No</option>
|
|
<option value="yes">Yes</option>
|
|
</select>
|
|
</td>
|
|
<td>1/1/1970, 00:00:00</td>
|
|
<td>
|
|
<button class="update-button">Update</button>
|
|
<button class="delete-button">Delete</button>
|
|
</td>
|
|
</tr>
|
|
</template>
|
|
<form>
|
|
<h1>Reading List Demo</h1>
|
|
<section>
|
|
<h2>Add new item</h2>
|
|
<label>
|
|
<span>Title</span>
|
|
<input type="text" name="title" value="Example URL" />
|
|
</label>
|
|
<label>
|
|
<span>URL</span>
|
|
<input type="text" name="url" value="https://example.com/*" />
|
|
</label>
|
|
<label>
|
|
<span>Has been read</span>
|
|
<select name="read" value="no">
|
|
<option value="no">No</option>
|
|
<option value="yes">Yes</option>
|
|
</select>
|
|
</label>
|
|
<button type="button" id="add-item">Add item</button>
|
|
<p id="error"></p>
|
|
</section>
|
|
<section>
|
|
<h2>Items</h2>
|
|
<table id="items">
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Read</th>
|
|
<th>Created At</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</table>
|
|
</section>
|
|
</form>
|
|
</body>
|
|
</html>
|