equal
deleted
inserted
replaced
1 {% extends "projrev/base.html" %} |
1 {% extends "projrev/base.html" %} |
2 {% block stylesheets %} |
2 {% block stylesheets %} |
3 <link rel="stylesheet" href="/site-content/css/login.css" type="text/css"/> |
3 <link rel="stylesheet" href="/site-content/css/login.css" type="text/css"/> |
|
4 <link type="text/css" rel="stylesheet" href="/site-content/css/colorbox.css" /> |
4 {% endblock stylesheets %} |
5 {% endblock stylesheets %} |
|
6 |
|
7 {% block scripts %} |
|
8 {{ block.super }} |
|
9 {% if exits %} |
|
10 <script type="text/javascript"> |
|
11 $(document).ready(function () { |
|
12 $("#inline").colorbox({width:"50%", inline:true, open: true, href:"#message", title:"Error"}); |
|
13 }); |
|
14 </script> |
|
15 {% endif %} |
|
16 {% endblock scripts %} |
|
17 |
5 {% block body %} |
18 {% block body %} |
6 <form id="login-form" action="#" method="POST"> |
19 <form id="login-form" action="#" method="POST"> |
7 <fieldset> |
20 <fieldset> |
8 |
21 |
9 <legend>Log in</legend> |
22 <legend>Log in</legend> |
16 <br /> |
29 <br /> |
17 <input type="submit" style="margin: -20px 0 0 287px;" class="button" name="commit" value="Submit"/> |
30 <input type="submit" style="margin: -20px 0 0 287px;" class="button" name="commit" value="Submit"/> |
18 {% endif %} |
31 {% endif %} |
19 </fieldset> |
32 </fieldset> |
20 </form> |
33 </form> |
|
34 <div class='hidden' style="display: none;"> |
|
35 <p><a id="inline" href="#"></a></p> |
|
36 <div id='message' style='padding:10px; background:#fff;'> |
|
37 {% if exits %} |
|
38 The Email ID already exists. Please close this box and enter the correct ID.<br/> |
|
39 {% endif %} |
|
40 </div> |
|
41 </div> |
21 {% endblock body %} |
42 {% endblock body %} |