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

Side by Side 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: More fine-tuning 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Monitoring Proxy: set credentials</title>
5 <style>
6 .message {
7 color: #990000;
8 font-weight: bold;
9 }
10 </style>
11 </head>
12 <body>
13 <p><a href="/admin/">&lt; Admin</a>
14 <p><div class="message">%(message)s</div>
15
16 <p><form method="POST">
17 Endpoint URL:
18 <p><input type="text" size="80" name="url" value="%(url)s">
19 <br>
20 Credentials JSON:
21 <p><textarea rows="20" cols="80" name="credentials">
22 %(credentials)s
23 </textarea>
24 <br>
25 Scopes (separated by space or end of line):
26 <p><textarea rows="5" cols="80" name="scopes">
27 %(scopes)s
28 </textarea>
29 <br>
30 Additional HTTP headers (JSON). Leave empty if none:
31 <p><textarea rows="5" cols="80" name="headers">
32 %(headers)s
33 </textarea>
34 <br>
35 <input type="submit">
36 </form>
37
38 </body>
39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698