summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkomalsheth2862016-12-02 16:48:57 +0530
committerkomalsheth2862016-12-02 16:48:57 +0530
commitdd8b0f84462481146702290f1d48f3dfb4b1f37c (patch)
treec24e8e5e7617d668bf416b6384da794290cd8768
parentd691cb070c312115393f6dd8e4ee48bf81c29b1c (diff)
downloadSciPy2016-dd8b0f84462481146702290f1d48f3dfb4b1f37c.tar.gz
SciPy2016-dd8b0f84462481146702290f1d48f3dfb4b1f37c.tar.bz2
SciPy2016-dd8b0f84462481146702290f1d48f3dfb4b1f37c.zip
Login Page Modified
-rwxr-xr-xwebsite/templates/cfp.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/website/templates/cfp.html b/website/templates/cfp.html
index d76fbdf..373f60a 100755
--- a/website/templates/cfp.html
+++ b/website/templates/cfp.html
@@ -4,7 +4,11 @@
<html>
<head>
+ {% if user and not user.is_anonymous %}
<title>Submit Proposal</title>
+ {% else %}
+ <title>Login</title>
+ {% endif %}
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
@@ -15,7 +19,12 @@
{% block header %}
<header id="header1">
<h1>SciPy India 2016</h1>
+ {% if user and not user.is_anonymous %}
<h2>Submit Proposal</h2>
+ {% else %}
+ <h2>Login</h2>
+ {% endif %}
+
</header>
{% endblock %}