Just learning how to make a basic extension. Creating an interface and setting up some basic plumbing.
17 lines
375 B
HTML
17 lines
375 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="popup.css">
|
|
</head>
|
|
<body>
|
|
<form id="priv-key-form">
|
|
<label for="priv-key">Private Key</label>
|
|
<input type="password" id="priv-key" name="priv-key" />
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|