mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
* Example of the webRequest.onAuthRequired API * Update README, add applications.id to manifest
23 lines
425 B
HTML
23 lines
425 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="options.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<section class="credentials">
|
|
<div class="title" >Username and password</div>
|
|
|
|
<label>Username: <input id="username" type="text"/></label>
|
|
<label>Password: <input id="password" type="text"/></label>
|
|
|
|
</section>
|
|
|
|
<script src="options.js"></script>
|
|
</body>
|
|
|
|
</html>
|