49 строки
1.3 KiB
HTML
49 строки
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Dupes</title>
|
|
<meta name="description" content="Find dupes by description">
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="https://code.cdn.mozilla.net/fonts/zilla-slab.css" rel="stylesheet">
|
|
<link href="https://code.cdn.mozilla.net/fonts/fira.css" rel="stylesheet">
|
|
<!-- import the webpage's stylesheet -->
|
|
<link rel="stylesheet" href="/style.css">
|
|
|
|
<!-- import the webpage's client-side javascript file -->
|
|
<script src="/client.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>
|
|
Mozilla
|
|
</h1>
|
|
<h2>
|
|
Find dupes in Bugzilla
|
|
</h2>
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<form>
|
|
<input name="str" type="text" maxlength="100" placeholder="Bug #, URL, or description" aria-labelledby="submit-dupe">
|
|
<button type="submit" id="submit-dream">Find dupes</button>
|
|
</form>
|
|
|
|
<h3 style="display: none">
|
|
Found <span id="count"></span> bugs
|
|
</h3>
|
|
|
|
<section class="dupes">
|
|
<ul id="dupes"></ul>
|
|
</section>
|
|
</main>
|
|
|
|
<p>
|
|
Mozilla Public, Built on <a href="https://glitch.com/edit/#!/bmo-find-dupes">Glitch</a>
|
|
</p>
|
|
|
|
</body>
|
|
</html>
|