Files
Anthias/templates/splash-page.html
2021-01-13 17:05:32 +00:00

40 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Welcome to Screenly OSE</title>
<link href="{{ url_for('static', filename='css/screenly.css') }}" rel="stylesheet"/>
<style type="text/css">
html, body {
height: 100%;
overflow-y: hidden;
}
</style>
</head>
<body class="splash container d-table">
<div class="col-12 d-table-cell align-middle">
<div class="splash-body p-5">
<div class="row">
<div class="col-12">
<div class="logo-container page-header text-center">
<img src="/static/img/screenly_ose_logo_white_large.png" class="img-fluid"/>
</div>
</div>
</div>
<div class="row">
<div class="col-12 text-center">
{% if context.my_ip %}
<p>To manage the content on this screen, just point your browser to:</p>
<div class="form-actions">
<a href="http://{{ context.my_ip }}">http://{{ context.my_ip }}</a>
</div>
{% else %}
<p>Unable to retrieve IP.</p>
{% endif %}
</div>
</div>
</div>
</div>
</body>
</html>