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

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: 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 unified diff | Download patch
OLDNEW
(Empty)
1 {% extends "base.html" %}
2 {% block extra_head %}
3 <style>
4 .message {
5 color: #990000;
6 font-weight: bold;
7 }
8 </style>
9 {% endblock %}
10
11 {% block content %}
12 <div class="container-fluid">
13 <div class="row-fluid">
14 <p>
15 <div class="col-md-10">
16 <p><a href="/admin/">&lt; Admin</a>
17 <p><div class="message">{{ message }}</div>
18
19 <p><form method="POST">
20 Endpoint URL:
21 <p><input type="text" size="80" name="url" value="{{ url }}">
22 <br>
23 Credentials JSON:
24 <p><textarea rows="20" cols="80" name="credentials">
25 {{ credentials }}
26 </textarea>
27 <br>
28 Scopes (one per line):
29 <p><textarea rows="5" cols="80" name="scopes">
30 {{ scopes }}
31 </textarea>
32 <br>
33 Additional HTTP headers (JSON). Leave empty if none:
34 <p><textarea rows="5" cols="80" name="headers">
35 {{ headers }}
36 </textarea>
37 <br>
38 <input type="submit">
39 </form>
40 </div>
41 </div>
42 </div>
43 {% endblock %}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698