aboutsummaryrefslogtreecommitdiff
path: root/popup.html
blob: 3f9f6c2c8a1bfcf751310f977cdfb4786e48aaab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
	<head>
		<title>REDIRECTOR</title>
		<link rel="stylesheet" href="css/popup.css" />
		<meta charset="UTF-8">
		<script src="js/angular.min.js"></script>
		<script src="js/popup.js"></script>
	</head>
	<body ng-app="popupApp" ng-controller="PopupCtrl">
		<h1>REDIRECTOR</h1>
		<div class="disabled"><span ng-show="disabled">Disabled</span></div>
		<button ng-click="toggleDisabled()">{{disabled ? 'Enable Redirector' : 'Disable Redirector'}}</button>
        <button ng-click="openRedirectorSettings()">Edit Redirects</button>
		<label><input type="checkbox" ng-model="logging" ng-click="toggleLogging()" /> Enable logging</label>
		<label><input type="checkbox" ng-model="enableNotifications" ng-click="toggleNotifications()" /> Enable notifications</label>
	</body>
</html>