-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout.html
More file actions
30 lines (19 loc) · 1.09 KB
/
about.html
File metadata and controls
30 lines (19 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends 'base.html'%} {% load staticfiles %} {% block content%}
<link rel="stylesheet" href="{%static 'css/custom.css' %}">
<div id="about-page" >
<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>
<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 %}