Files
nostash/Shared (Extension)/Resources/popup.html
Ryan Breen 210e61c35b Interface and basic functionality.
Just learning how to make a basic extension. Creating an interface and setting up some basic plumbing.
2023-01-11 22:54:50 -05:00

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>