This repository has been archived by the owner on Dec 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michal Cichra
committed
Jun 6, 2014
1 parent
c0ec102
commit 80fcb52
Showing
2 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<h1>Pair your Traffic Monitor with the Global Dashboard</h1> | ||
|
||
<form class="form-horizontal" name='pair_form' ng-submit="pair()"> | ||
|
||
<fieldset> | ||
<div class="control-group" ng-class="{error: pair_form.pairing_key.$invalid}"> | ||
<label class="control-label" for="pairing_key">Your Pairing Key:</label> | ||
<div class="controls"> | ||
<input id="pairing_key" type="text" name="pairing_key" ng-model="setup.pairing_key" required> | ||
</div> | ||
</div> | ||
</fieldset> | ||
|
||
<fieldset> | ||
<div class="control-group"> | ||
<div class="controls"> | ||
<button type="submit" class="btn btn-primary">Pair!</button> | ||
</div> | ||
<div class="controls"> | ||
<a ng-href="{{get_key}}">Get new key</a> | ||
</div> | ||
</div> | ||
</fieldset> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<div id="setup-modal"> | ||
<div id="setup-dialog" class="container"> | ||
<div class="hero-unit"> | ||
|
||
<h1>Set up your APItools Traffic Monitor</h1> | ||
|
||
<p>Congratulations! You got it up and running.</p> | ||
|
||
<p> | ||
Check out our <a href="https://docs.apitools.com/docs/on-premise/">documentation</a> | ||
for different ways of installation, DNS configuration and other guides. | ||
</p> | ||
</div> | ||
|
||
<form class="form-horizontal" name='setup_form' ng-submit="saveSetup()"> | ||
<fieldset> | ||
<div class="control-group" ng-class="{error: form.name.$invalid}"> | ||
<label class="control-label" for="report_usage">Anonymously report usage</label> | ||
|
||
<div class="controls"> | ||
<input id="report_usage" type="checkbox" name="report_usage" | ||
ng-model="setup.report_usage"> | ||
|
||
<p> | ||
We collect anonymous data about what services you use and how they perform. | ||
This will allow us to do performance analysis of various APIs, predict performance issues | ||
or just tell you if it is broken just for you or everyone else.</p> | ||
<p> | ||
Read our <a href="https://docs.apitools.com/legal/terms-and-conditions/" target="_blank">Terms and Conditions</a> | ||
and <a href="https://docs.apitools.com/legal/privacy-policy/" target="_blank">Privacy Policy</a> | ||
to learn more about how we handle these data.<br/> | ||
By running APItools Traffic Monitor you accept these Terms and Conditions and Privacy Policy. | ||
</p> | ||
</div> | ||
</div> | ||
</fieldset> | ||
|
||
<fieldset> | ||
<div class="control-group"> | ||
<div class="controls"> | ||
<button type="submit" class="btn btn-primary btn-large">Save</button> | ||
</div> | ||
</div> | ||
</fieldset> | ||
|
||
</form> | ||
</div> | ||
</div> | ||
|