-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign_in.html
106 lines (94 loc) · 4.82 KB
/
sign_in.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="/images/PivotalPDFIcon.png" />
<title>Agile Docs</title>
<meta name="description" content="A PDF document generator for Pivotal Tracker.">
<!-- Bootstrap core CSS -->
<link href="/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="/stylesheets/main.css">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
</head>
<body>
<nav class="navbar navbar-default header">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand header-logo" href="#">
<img alt="Brand" src="/images/PivotalPDFIcon.png" width="25px" height="25px">
</a>
<a class="navbar-brand" href="#">Agile Docs</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="nav-link"><a class="text-uppercase" href="/SignIn"><strong>Sign In</strong></a></li>
</ul>
</div>
</div>
</nav>
<div class="site-wrapper container-fluid">
<form id="authenticate" action="/authenticate" method="post" onsubmit="track_event('Authenticate')">
<div class="row">
<div class="col-md-1">
</div>
<div class="col-md-5">
<p class="lead">Agile Docs creates printable output from Pivotal Tracker stories.</p>
<p>
Agile Docs creates well formatted PDF documents from a selection of Pivotal Tracker user stories. Sign in with your <a class="link" href="https://www.pivotaltracker.com/profile#api" target="_blank">Pivotal Tracker API Token</a>. Once authenticated select your project and the stories you want to include then hit Generate PDF.
</p>
<p>
The Agile Docs web application includes multiple format options. The Full Document format uses the entire description of each story and also include story activity notes. The Summary Document format only includes the first paragraph of each story.
</p>
<p>
For even greater convenience, check out the <a class="link" href="https://chrome.google.com/webstore/detail/agile-docs/godbpiedddbnobgkljkcpfnggdikcnjk" target="_blank">Agile Docs Chrome Extension.</a>. The extension adds a PDF button to the multiple stories selection tools (CSV, clone, delete...) in Pivotal Tracker. It doesn't get any easier!
</p>
</div>
<div class="col-md-4 report-parameters">
<div class="form-group">
<label for="APIKey">API Token</label>
<input type="apikey" class="form-control" id="APIKey" name="APIKey" placeholder="Pivotal Tracker API Token">
<a class="help-block link" href="https://www.pivotaltracker.com/profile#api" target="_blank">Click here to find or create your Pivotal Tracker API Token.</p>
</div>
<div>
<button class="btn btn-default" name="signIn" value="Sign In" type="submit">Sign In</button>
</div>
</div>
<div class="col-md-2">
</div>
</div>
</form>
<div class="site-wrapper-inner">
</div> <!--site-wrapper-inner-->
<div class="row footer">
<div class="col-md-1">
</div>
<div class="col-md-10">
</div>
<div class="col-md-1">
</div>
</div>
<nav class="navbar navbar-default navbar-fixed-bottom footer">
<div class="container-fluid">
<div>
<ul class="nav navbar-nav navbar-left">
<small> <a href="https://www.pivotaltracker.com/projects/527625">PivotalTracker project</a></small>
</ul>
<ul class="nav navbar-nav navbar-right">
<small>Version: {{version}}</small>
</ul>
</div>
</div>
</nav>
</div> <!--site-wrapper-->
<script src="/js/main.js"></script>
<!-- Set the Javascript client endpoint security -->
<script src="https://apis.google.com/js/client.js?onload=init"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="/js/ie10-viewport-bug-workaround.js"></script>
<script src="/js/google_analytics.js"></script>
</body></html>