-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbaseL4G.html
More file actions
27 lines (24 loc) · 799 Bytes
/
baseL4G.html
File metadata and controls
27 lines (24 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<html>
<head>
<link rel="stylesheet" href="style.css" />
<title>Lose4Good - {% block title %}Login{% endblock %}</title>
{% block extrahead %} {% endblock %}
<style>
#head
{
opacity:0.9;
filter:alpha(opacity=40); /* For IE8 and earlier */
}
</style>
</head>
<body>
{% block logout %}
<p style="position:absolute;top:90px;right:25px;font-size:14px; color:#ffffff; font-weight:bold; font-style:italic;z-index:3"><a href="{% url accounts.views.LogoutRequest %}">Logout</a></p>
{% endblock %}
<div id='pageContainer'>
<img id="head" src="{{ MEDIA_URL }}easy.jpg" id="Banner2" style="position:relative;left:0px;top:1px;right:0px;width:100%;height:125px;border-width:0;z-index:2;">
{% block content %}
{% endblock %}
</div>
</body>
</html>