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

Side by Side Diff: appengine/isolate/templates/base.html

Issue 2047753002: Add hack to enable multilogin. (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: Created 4 years, 6 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <!-- Copyright 2013 The LUCI Authors. All rights reserved. 3 <!-- Copyright 2013 The LUCI Authors. All rights reserved.
4 Use of this source code is governed under the Apache License, Version 2.0 4 Use of this source code is governed under the Apache License, Version 2.0
5 that can be found in the LICENSE file. --> 5 that can be found in the LICENSE file. -->
6 <head> 6 <head>
7 <meta http-equiv="Content-type" content="text/html; charset=UTF-8"> 7 <meta http-equiv="Content-type" content="text/html; charset=UTF-8">
8 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 8 <meta name="viewport" content="width=device-width, initial-scale=1.0">
9 <title>{{ title or "Isolate Server" }}</title> 9 <title>{{ title or "Isolate Server" }}</title>
10 10
(...skipping 10 matching lines...) Expand all
21 display: inline-block; 21 display: inline-block;
22 float: right; 22 float: right;
23 } 23 }
24 </style> 24 </style>
25 {% block headers %} 25 {% block headers %}
26 {# Page specific headers goes there. #} 26 {# Page specific headers goes there. #}
27 {% endblock %} 27 {% endblock %}
28 </head> 28 </head>
29 <body {% if onload is defined %}onload="{{onload}}"{% endif %}> 29 <body {% if onload is defined %}onload="{{onload}}"{% endif %}>
30 <div class="top_right_links"> 30 <div class="top_right_links">
31 {% if nickname is defined %} 31 <a href="{{signin_link|safe }}">{{nickname}}</a><br>
32 {% if nickname %} 32 {{now|datetimeformat}}<br>
33 {{ nickname }}
34 {% else %}
35 <a href="{{signin_link|safe }}">Sign in</a>
36 {% endif %}
37 <br>
38 {% endif %}
39 {% if now is defined %}
40 {{now|datetimeformat}}<br>
41 {% endif %}
42 {% block floating %} 33 {% block floating %}
43 {% endblock %} 34 {% endblock %}
44 </div> 35 </div>
45 {% block body %} 36 {% block body %}
46 {% endblock %} 37 {% endblock %}
47 <div style="width:100%"> 38 <div style="width:100%">
48 <hr> 39 <hr>
49 <div style="float: left;"><p> 40 <div style="float: left;"><p>
50 <a target="_blank" href="https://cloud.google.com/appengine/"><img border= "0" 41 <a target="_blank" href="https://cloud.google.com/appengine/"><img border= "0"
51 src="/third_party/appengine-noborder-120x30.gif" 42 src="/third_party/appengine-noborder-120x30.gif"
(...skipping 17 matching lines...) Expand all
69 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement (o), 60 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement (o),
70 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore (a,m) 61 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore (a,m)
71 })(window,document,'script','//www.google-analytics.com/analytics.js','ga' ); 62 })(window,document,'script','//www.google-analytics.com/analytics.js','ga' );
72 63
73 ga('create', '{{google_analytics}}', {'siteSpeedSampleRate': 100}); 64 ga('create', '{{google_analytics}}', {'siteSpeedSampleRate': 100});
74 ga('send', 'pageview'); 65 ga('send', 'pageview');
75 </script> 66 </script>
76 {% endif %} 67 {% endif %}
77 </body> 68 </body>
78 </html> 69 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698