Make extention acceptable by Edge Add-Ons website
This commit is contained in:
54
public/options.html
Normal file
54
public/options.html
Normal file
@@ -0,0 +1,54 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link href="https://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
|
||||
margin: 30px;
|
||||
}
|
||||
h1 {
|
||||
font-weight: 300;
|
||||
font-size: 2.2rem;
|
||||
font-family: 'Indie Flower', cursive;
|
||||
}
|
||||
h2 {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
div, select {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
div + div {
|
||||
padding-top: 10px;
|
||||
}
|
||||
</style>
|
||||
<script src='jquery.3.3.1.slim.js'></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>A Toast to OWA</h1>
|
||||
<h2>Settings</h2>
|
||||
<div>
|
||||
<label>Email Notification Delay: </label>
|
||||
<select id="emailDelay">
|
||||
<option value=-1>Forever </option>
|
||||
<option value=3>3 Seconds</option>
|
||||
<option value=4>4 Seconds</option>
|
||||
<option value=5>5 Seconds</option>
|
||||
<option value=10>10 Seconds</option>
|
||||
<option value=20>20 Seconds</option>
|
||||
</select>
|
||||
</div>
|
||||
<div>
|
||||
<label>Calendar Notification Delay: </label>
|
||||
<select id="calendarDelay">
|
||||
<option value=-1>Forever </option>
|
||||
<option value=3>3 Seconds</option>
|
||||
<option value=4>4 Seconds</option>
|
||||
<option value=5>5 Seconds</option>
|
||||
<option value=10>10 Seconds</option>
|
||||
<option value=20>20 Seconds</option>
|
||||
</select>
|
||||
</div>
|
||||
</body>
|
||||
<script src="options.js"></script>
|
||||
</html>
|
Reference in New Issue
Block a user