diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/login/index.html | 30 |
1 files changed, 6 insertions, 24 deletions
diff --git a/templates/login/index.html b/templates/login/index.html index 6b2e2cd..541f0c1 100644 --- a/templates/login/index.html +++ b/templates/login/index.html @@ -1,24 +1,6 @@ -<!doctype html> -<html lang="en"> -<head> - <meta charset="UTF-8"></meta> - <title>{{ title }}</title> - <link href="{{ basepath }}/ui/ipsilon.css" type="text/css" rel="stylesheet"></link> - <link href="{{ basepath }}/ui/favicon.ico" type="image/ico" rel="icon"></link> -</head> -<body> - <div id="container"> - <div id="logo"> - <p>Ipsilon</p> - </div> - <div id="admin"> - {% if user.is_admin %} - <a href="admin">admin</a> - {% endif %} - </div> - <div id="login"> - <p>Redirecting ... {{ redirect }}</p> - </div> - </div> -</body> -</html> +{% extends "master.html" %} +{% block main %} +<div class="col-sm-5 col-md-6 col-lg-7 details"> + <p>Redirecting ... {{ redirect }}</p> +</div> +{% endblock %}
\ No newline at end of file |