front pages

This commit is contained in:
ashok sukumaran 2011-07-04 03:40:28 +05:30
parent efead34876
commit c621b32b3f
4 changed files with 22 additions and 3 deletions

View File

@ -9,7 +9,6 @@ width: 30%;
font-size: 14px;
float:left;
overflow: hidden;
padding: 10px;
}
#browseArticlesright {

View File

@ -0,0 +1,6 @@
#loginWrapper {
padding: 18px 0 18px 100px;
overflow: auto;
text-align: center;
}

View File

@ -14,8 +14,7 @@
{% block content %}
<div id="faqBlock">
<p>FAQs <br />
</p>
<h5>FAQs</h5>
<p> Q. Does one need to login in order to use the printing tools? <br />
A. Yes, this is required to establish which documents you have permissions to modify or edit. To do this anonymously, use username: "guest", password: "guest". </p> <br/>
<p>Q. Why the name and url edgwareroad.org? <br/>

View File

@ -1,8 +1,23 @@
{% extends 'main_base.html' %}
{% block title %}
Login
{% endblock %}
{% block extra_head %}
<link rel="stylesheet" href="/static/css/files/login.css" />
{% endblock %}
{% block pageTitle %}
Login
{% endblock %}
{% block content %}
<div id="loginWrapper">
<form action="" method="POST">
{{ form.as_ul }}<br />
<input type="submit" value="Submit" />
</form>
</div>
{% endblock %}