-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
106 lines (86 loc) · 3.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>List Service</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="apple-touch-icon" sizes="144x144" href="img/lS_144.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/lS_114.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/lS_72.png">
<link rel="apple-touch-icon" href="img/lS_144.png">
<link rel="shortcut icon" href="img/favicon.ico">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#">ListService</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div> <!--/.nav-collapse -->
</div>
</div>
</div>
<div id="fixScroll">
<div class="container-fluid">
<div id="emailDialog" class="hide modal-body">
<p>Please enter your email:</p>
<input type="text" name="email" />
</div>
<div id="actionDialog" class="hide modal-body">
<p>Check your email for confirmation requests!</p>
<p>Here are your changes:</p>
<ul></ul>
</div>
<div class="row-fluid">
<div class="span5">
<h2>Subscribed</h2>
</div>
<div class="span5 offset1">
<h2>Unsubscribed</h2>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span5 indScroll">
<div id="subbed">
<!--dynamically populated now-->
</div>
</div>
<div class="span5 offset1 indScroll rightBar">
<div id="notSubbed">
<!--dynamically populated now-->
</div>
</div>
</div>
</div>
</div>
<div class="buttons-row">
<button class="btn btn-large btn-block btn-primary" type="button" style="padding:15px" onclick="action()">Action!</button>
</div>
<!-- Scripts -->
<script type="text/javascript" src="js/bootstrap2.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.0.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body></html>