diff options
author | komalsheth286 | 2016-12-02 16:48:57 +0530 |
---|---|---|
committer | komalsheth286 | 2016-12-02 16:48:57 +0530 |
commit | dd8b0f84462481146702290f1d48f3dfb4b1f37c (patch) | |
tree | c24e8e5e7617d668bf416b6384da794290cd8768 | |
parent | d691cb070c312115393f6dd8e4ee48bf81c29b1c (diff) | |
download | SciPy2016-dd8b0f84462481146702290f1d48f3dfb4b1f37c.tar.gz SciPy2016-dd8b0f84462481146702290f1d48f3dfb4b1f37c.tar.bz2 SciPy2016-dd8b0f84462481146702290f1d48f3dfb4b1f37c.zip |
Login Page Modified
-rwxr-xr-x | website/templates/cfp.html | 9 |
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 %} |