-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
108 lines (99 loc) · 3.55 KB
/
index.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
// This file is part of Music Match.
// Copyright (C) 2022 David P. Anderson
//
// Music Match is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// Music Match is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Music Match. If not, see <http://www.gnu.org/licenses/>.
// --------------------------------------------------------------------
require_once("../inc/util.inc");
require_once("../inc/mm.inc");
function left() {
//text_start();
echo "
<p>
<font size=+4>Music Match</font>
<p>
<img width=19% src=comp.png alt=\"Picture of a musical score\">
<img width=19% src=perf.png alt=\"Picture of a violinist\">
<img width=19% src=tech.png alt=\"Picture of a mixing board\">
<img width=19% src=ens.png alt=\"Picture of an orchestra\">
<img width=19% src=teach.png alt=\"Picture of a cello student and teacher\">
<p>
<br>
Music Match is like LinkedIn for classical musicians:
performers, composers, technicians and teachers.
It lets musicians find each other, communicate, and collaborate.
<p>
<h3>Performers:</h3>
<ul>
<li> Find composers who write music for your instrument,
in your style and level.
Check out their compositions, or ask them to write new ones for you.
<li> Find local musicians to play and perform music with.
</ul>
<h3>Composers:</h3>
<ul>
<li> Find performers to play, perform, and record
your compositions.
<li> Get (and give) help with score editing and rendering software.
</ul>
<p><br>
Music Match is designed for musicians at all levels,
both amateur and professional.
<p>
<a href=intro.php>Learn more about Music Match.</a>
<br><br>
<center>
";
$user = get_logged_in_user(true);
if ($user) {
update_visit_time($user);
mm_show_button("home.php", "Go to my home page");
//home_button();
} else {
join_button();
}
echo "
</center>
<hr>
<p>
Music Match is a non-profit open-source project
based at the University of California, Berkeley.
Its source code is on <a href=https://github.com/davidpanderson/music_match/>Github</a>.
<p>
<a href=https://berkeley.edu><img src=ucbseal.png height=150></a>
<p>
The data collected by Music Match will not be
sold, distributed, or used for other purposes.
You can delete your account, in which case all
data about you will be removed.
";
//text_end();
}
function right() {
panel('News',
function() {
show_news(0, 5);
},
'panel-primary'
);
}
$show_home_link = false;
page_head("", null, true, '',
'<meta name=description content="Music Match is a meeting place for classical music performers, composers, technicians, teachers, and ensembles">
<meta name=keywords content="classical music musician performer composer orchestra meet">
'
);
grid(null, 'left', 'right', 7);
page_tail();
?>