28 lines
675 B
HTML
28 lines
675 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Starter Popup</title>
|
|
<link rel="stylesheet" href="popup.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class='header'>
|
|
<h3 for='revId'>Simple Sync</h3>
|
|
<label class="switch">
|
|
<input type="checkbox" id="editToggle" />
|
|
<span class="slider"></span>
|
|
</label>
|
|
</div>
|
|
<label>API apiUrl</label>
|
|
<input id='apiUrl' type='text' readonly />
|
|
<label>Sync Token</label>
|
|
<input id='syncToken' type='textarea' readonly />
|
|
</div>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
|
|
</html> |