-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
73 lines (69 loc) · 2.24 KB
/
options.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Options</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<style>
@import url(http://fonts.googleapis.com/css?family=Droid+Sans+Mono;)
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
#redirects {
width: 95%;
height: 200px;
margin-bottom: 20px;
font-family: 'Droid Sans Mono', monospace;
}
.container {
clear: both;
}
.navbar-inner {
background-color: #F6E4CC;
}
</style>
<link href="bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<span class="brand">URL Mover Options</span>
</div>
</div>
</div>
<div class="container">
<div id="row-fluid">
<div id="span12">
<div class="form-horizontal">
<p class="desc">Should we enabled the mover???</p>
<div class="control-group">
<div class="controls">
<label for="pluginEnabled" class="checkbox">
<input type="checkbox" name="enabled" id="pluginEnabled" />
Enabled for all sites.
</label>
</div>
</div>
<p class="desc">
Enter url redirects as comma seperated pairs of replacements, one pair per line.
In every request, the first string will be replaced by the second.
</p>
<div class="control-group">
<label class="control-label" for="redirects">Redirects</label>
<div class="controls">
<textarea name="redirects" id="redirects"></textarea>
<br>
<button id="save_redirects" class="btn">Save</button>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="jquery-2.0.0.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="options.js"></script>
</body>
</html>