| 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>
|
|
|