Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1728)

Unified Diff: appengine/chrome_infra_mon_proxy/templates/set_credentials.html

Issue 928043005: Monitoring proxy for time series data (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Responded to comments Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/chrome_infra_mon_proxy/templates/set_credentials.html
diff --git a/appengine/chrome_infra_mon_proxy/templates/set_credentials.html b/appengine/chrome_infra_mon_proxy/templates/set_credentials.html
new file mode 100644
index 0000000000000000000000000000000000000000..fe1ebd96d6b6f18fdc2dce07f92e44778e5a81ba
--- /dev/null
+++ b/appengine/chrome_infra_mon_proxy/templates/set_credentials.html
@@ -0,0 +1,43 @@
+{% extends "base.html" %}
+{% block extra_head %}
+<style>
+.message {
+ color: #990000;
+ font-weight: bold;
+}
+</style>
+{% endblock %}
+
+{% block content %}
+ <div class="container-fluid">
+ <div class="row-fluid">
+ <p>
+ <div class="col-md-10">
+<p><a href="/admin/">&lt; Admin</a>
+<p><div class="message">{{ message }}</div>
+
+<p><form method="POST">
+Endpoint URL:
+<p><input type="text" size="80" name="url" value="{{ url }}">
+<br>
+Credentials JSON:
+<p><textarea rows="20" cols="80" name="credentials">
+{{ credentials }}
+</textarea>
+<br>
+Scopes (one per line):
+<p><textarea rows="5" cols="80" name="scopes">
+{{ scopes }}
+</textarea>
+<br>
+Additional HTTP headers (JSON). Leave empty if none:
+<p><textarea rows="5" cols="80" name="headers">
+{{ headers }}
+</textarea>
+<br>
+<input type="submit">
+</form>
+ </div>
+ </div>
+ </div>
+{% endblock %}

Powered by Google App Engine
This is Rietveld 408576698