Initial commit of DEMOS2 with the upgraded 'Create Event' UI. However, there is no input validation currently
This commit is contained in:
commit
7084bd1b16
155 changed files with 8102 additions and 0 deletions
29
allauthdemo/templates/bases/bootstrap-visitor.html
Executable file
29
allauthdemo/templates/bases/bootstrap-visitor.html
Executable file
|
@ -0,0 +1,29 @@
|
|||
{% extends "bases/bootstrap-jquery.html" %}
|
||||
{% load staticfiles %}
|
||||
|
||||
{% block nav %}
|
||||
<!-- Fixed navbar -->
|
||||
<div class="navbar navbar-default navbar-static-top navbar-shadow" role="navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="/"><img src='{% static "img/demos2-banner.png" %}' style="height:100%" title="demos2"></a>
|
||||
</div>
|
||||
<div class="navbar-collapse collapse">
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li><a href="{% url 'landing_index' %}">Welcome</a></li>
|
||||
<li><a href="{% url 'landing_about' %}">About</a></li>
|
||||
<li><a href="{% url 'polls:index' %}">Events</a></li>
|
||||
<li><a href="{% url 'account_signup' %}"><strong>Join</strong></a></li>
|
||||
<li><a href="{% url 'account_login' %}"><strong>Log In</strong></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
Reference in a new issue