-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
64 lines (53 loc) · 1.91 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Add journal proxy</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/custom.css" rel="stylesheet" media="screen">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../../assets/js/html5shiv.js"></script>
<script src="../../assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="jumbotron">
<div class="container">
<h1>Add journal proxy</h1>
<p>Tired of typing your academic proxy at the end of journals URL
manually? Create a button that does it for you, and add it to your
bookmarks.</p>
</div>
</div>
<div>
<form id="proxy-form">
<div class="input-group input-group-lg">
<input type="text" class="form-control input-lg" id="url-input">
<span class="input-group-btn">
<button class="btn btn-primary btn-lg" type="submit" id="create">
<span class="glyphicon glyphicon-cog"></span> Create!
</button>
</span>
</div>
</form>
</div>
<div id="error" class="alert alert-danger">
Hey! You must type something.
</div>
<div class="text-center">
<a class="btn btn-danger btn-lg" id="bookmarklet" title="Add proxy">
Type proxy adress
</a>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/build.js"></script>
</body>
</html>