-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathparticipate.php
More file actions
executable file
·39 lines (39 loc) · 1.45 KB
/
participate.php
File metadata and controls
executable file
·39 lines (39 loc) · 1.45 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
31
32
33
34
35
36
37
38
39
<ul class="choose-customer participate_list-choose-customer">
<li data-show-customer="rookie" class="active">
<header>
<h3>Anfänger</h3>
<p>Du hast gerade erst von uns gehört, findest die Idee interessant und möchtest mitmachen?</p>
</header>
</li>
</ul>
<section class="show-customer">
<article id="rookie" class="participate_show-customer active">
<?php include('content/participate_customer.php'); ?>
</article>
</section>
<ul class="choose-customer participate_list-choose-customer">
<li data-show-customer="member" class="member">
<header id="Firmware">
<h3>Freifunker</h3>
<p>Du bist schon länger dabei und suchst nach Informationen oder der <a href="#Firmware">Firmware</a>?</p>
</header>
</li>
</ul>
<section class="show-customer">
<article id="member" class="participate_show-customer active">
<?php include('content/participate_member.php'); ?>
</article>
</section>
<ul class="choose-customer participate_list-choose-customer">
<li data-show-customer="sponsor" class="sponsor">
<header>
<h3>Unterstützer</h3>
<p>Du findest das Projekt unterstützenswert und möchtest uns helfen?</p>
</header>
</li>
</ul>
<section class="show-customer">
<article id="sponsor" class="participate_show-customer active">
<?php include('content/participate_sponsor.php'); ?>
</article>
</section>