6f838a09b8
Moved the tests to the horizon portion since they test core functionality. This also required moving some of the templates, etc. that belong in horizon to their proper homes. Change-Id: I7d9758845b81e4b8bcf1ffaaff4f6e237b4fe9f8
18 lines
435 B
HTML
18 lines
435 B
HTML
{% load i18n branding %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en" xml:lang="en">
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<title>{% trans "Login" %} - {% site_branding %}</title>
|
|
{% include "_stylesheets.html" %}
|
|
</head>
|
|
<body id="splash">
|
|
<div class="container">
|
|
<div class="row large-rounded">
|
|
{% include 'auth/_login.html' %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|