Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 19 additions & 23 deletions authentication/templates/about.html
Original file line number Diff line number Diff line change
@@ -1,34 +1,30 @@
{% extends 'base.html'%} {% load staticfiles %} {% block content%}


<link rel="stylesheet" href="{%static 'css/custom.css' %}">

<div id="about-page" style="margin: auto; width: 60%; list-style: none; text-anchor: none; margin-top:60px">
<div id="about-page" >

<h2> Welcome to Pitch</h2>
<h4>What is PITCH</h4>


<P> PITCH is an online platform that helps musicians find gigs. A venue posts an event that require a musician and musicians can apply to play at that event.</P>

<h3>How to use Pitch effectively</h3>

<ul>
<h3> Update Profile</h3>
<li>Once registered, Please go to your profile and click on update profile.</li>
<h3> Select User type</h3>
<li>if you are a Venue, please selece <em>Venue</em> from Type user drop down menu on update profile page.</li>
<ul>
<li>This will allow you to submit events on our event board as a Venue and select musicians to play at this event. </li>
</ul>
<li>if you are a Musician, please selece <em>Musician</em> from Type user drop down menu</li>
<ul>
<li>
This will Allow you to see the events that require a musician and can apply to play at those events.
You can also post an Ad if you are available and would like to play at any event.
</li>
</ul>

</ul>
<button type="button" onclick="window.location.href='/accounts/login/'" class="btn btn-danger btn-lg">Login</button>
<h2>How to use Pitch effectively</h2>


<p>Once registered, Please go to your profile and click on update profile.</p>
<h3>Select User type</h3>
<p>If you are a Venue, please selece <em>Venue</em> from Type user menu on the update profile page.</p>
<p>If you are a Musician, please selece <em>Musician</em> from Type user menu on the update profile page.</p>
<h3>Upload a Profile Picture</h3>
<p>Let everyone see you.</p>
<h3>Update your Location</h3>
<p>Available events are based on your location</p>
<br>

<button type="button" onclick="window.location.href='/accounts/login/'" class="btn btn-danger btn-lg">Register</button>
<button type="button" onclick="window.location.href='/register/'" class="btn btn-danger btn-lg">Login</button>
</div>

</div>
{% endblock %}
2 changes: 1 addition & 1 deletion authentication/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right main-navigation">
<li><a href="#" class="smoothScroll">ABOUT PITCH</a></li>
<li><a href="/about" class="smoothScroll">ABOUT PITCH</a></li>
{% if user.is_authenticated %}
<li><a href="/home/{{pk}}" class="smoothScroll">PROFILE</a></li>
{% else %} {% endif %} {% if user.is_authenticated %}
Expand Down
6 changes: 3 additions & 3 deletions authentication/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<script>
$(document).ready(function() {
data = {{events|safe}};


var date = Date();
console.log(date)
$('#calendar').fullCalendar({
//<!--Header Section Including Previous,Next and Today-->
header: {
Expand All @@ -28,7 +28,7 @@
},

//<!--Default Date-->
defaultDate: '2016-12-12',
defaultDate: date,
editable: true,

//<!--Event Section-->
Expand Down
8 changes: 8 additions & 0 deletions static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,14 @@ input[type=text]:focus {
margin: 30 auto;
}

#about-page{
margin: auto; width: 60%;
text-anchor: none;
margin-top:80px;
font-family: sans-serif;
line-height: .5;
}

#about-page ul li{
list-style-type: none;
list-style: none;
Expand Down