mirror of
https://github.com/esphome/esphome.git
synced 2024-11-02 08:40:55 +01:00
75 lines
2.3 KiB
HTML
75 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>esphomeyaml Dashboard</title>
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ get_static_file_url('materialize.min.css') }}">
|
|
<link rel="stylesheet" href="{{ get_static_file_url('esphomeyaml.css') }}">
|
|
<link rel="shortcut icon" href="{{ get_static_file_url('favicon.ico') }}">
|
|
|
|
<script src="{{ get_static_file_url('materialize.min.js') }}"></script>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<nav>
|
|
<div class="nav-wrapper indigo">
|
|
<a href="#" class="brand-logo left">esphomeyaml Dashboard</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="ribbon"></div>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col card s10 offset-s1 m10 offset-m1 l8 offset-l2">
|
|
<form action="/login" method="post">
|
|
<div class="card-content">
|
|
<span class="card-title">Enter credentials</span>
|
|
<p>
|
|
Please login using your Home Assistant credentials.
|
|
</p>
|
|
{% if error is not None %}
|
|
<p>
|
|
{{ escape(error) }}
|
|
</p>
|
|
{% end %}
|
|
<div class="row">
|
|
<div class="input-field col s12">
|
|
<label for="username">Username</label>
|
|
<input type="text" class="validate" name="username" id="username" />
|
|
</div>
|
|
<div class="input-field col s12">
|
|
<label for="password">Password</label>
|
|
<input type="password" class="validate" name="password" id="password" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-action right-align">
|
|
<button class="btn indigo waves-effect waves-light" type="submit" name="action">Login</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="page-footer indigo darken-1">
|
|
<div class="container">
|
|
|
|
</div>
|
|
<div class="footer-copyright">
|
|
<div class="container">
|
|
© 2018 Copyright Otto Winter, Made with <a class="grey-text text-lighten-4" href="https://materializecss.com/" target="_blank">Materialize</a>
|
|
<a class="grey-text text-lighten-4 right" href="{{ docs_link }}" target="_blank">esphomeyaml {{ version }} Documentation</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|