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

Unified Diff: appengine/machine_provider/templates/base.html

Issue 2196623004: Add basic Machine Provider UI (Closed) Base URL: https://github.com/luci/luci-py.git@master
Patch Set: Fix Created 4 years, 4 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
« no previous file with comments | « appengine/machine_provider/static/style.css ('k') | appengine/machine_provider/templates/catalog.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/machine_provider/templates/base.html
diff --git a/appengine/machine_provider/templates/base.html b/appengine/machine_provider/templates/base.html
new file mode 100644
index 0000000000000000000000000000000000000000..f32b9935b2dedfa3573074c2c0eda18166716173
--- /dev/null
+++ b/appengine/machine_provider/templates/base.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<!-- Copyright 2016 The LUCI Authors. All rights reserved.
+Use of this source code is governed under the Apache License, Version 2.0
+that can be found in the LICENSE file. -->
+<html>
+ <head>
+ <meta http-equiv="Content-type" content="text/html; charset=UTF-8">
+ <title>Machine Provider</title>
+ <link rel="stylesheet" href="/static/style.css" type="text/css" />
+ </head>
+ <body>
+ <div style="float: right">
+ <a href="{{signin_link|safe}}">{{nickname}}</a>
+ </div>
+ <h1>Machine Provider</h1>
+ {% block content %}
+ {% endblock %}
+ </body>
+</html>
« no previous file with comments | « appengine/machine_provider/static/style.css ('k') | appengine/machine_provider/templates/catalog.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698