forked from klodio/treport
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
91 lines (77 loc) · 2.74 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
<html lang="en">
<head>
<meta charset="utf-8">
<title>Trello Report Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
</style>
<link media="all" rel="stylesheet" href="css/bootstrap.min.css" type="text/css" />
<link media="all" rel="stylesheet" href="css/style.css" type="text/css" />
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">Trello Report Generator</a>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a id="disconnect" href="#">Logout</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<!-- Main hero unit for a primary marketing message or call to action -->
<div id="loggedout" class="hero-unit">
<h1>Trello Report Generator</h1>
<h2><a id="connectLink" href="#">Please Log in to Trello to Continue</a></h2>
<br />
<p>Generate your daily reports in one click!</p>
</div>
<div id="loggedin">
<div class="hero-unit">
<h1 id="welcome">
Welcome <span id="fullName"> </span>
</h1>
<h2>Which type of report would you like today?</h2>
<div id="reportButtons">
<input type="button" value="Daily" class="reportButton btn btn-inverse btn-large">
<input type="button" value="Weekly" class="reportButton btn btn-inverse btn-large">
</div>
</div>
<div class="row">
<div class="span6">
<div class="report">
<div id="wmd-button-bar"></div>
<textarea id="wmd-input" rows=30 cols=85></textarea>
</div>
</div>
<div class="span6">
<div class="report" id="wmd-preview"></div>
</div>
</div>
</div>
<hr>
<footer>
<p>© klodio 2012</p>
</footer>
</div> <!-- /container -->
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.3.3/underscore-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/pagedown/1.0/Markdown.Converter.js"></script>
<script src="js/Markdown.Editor.js"></script>
<script src="//api.trello.com/1/client.js?key=359d056ee85ee5fb85b02366c1d3bc21"></script>
<script src="js/script.js"></script>
</body>
</html>