summaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
Diffstat (limited to 'website')
-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 %}