This repository has been archived by the owner on Dec 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
97 lines (83 loc) · 3.12 KB
/
about.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
<?php
$title = 'About | Aleator Stream';
include("inc/header.inc");
?>
<h2>The project</h2>
<p>
Aleator Stream is a group project by the Aleatoribus group as part of Building IT Systems at RMIT University in 2016.
</p>
<h2>Project contributors</h2>
<p>
<strong>
<?php
$i = 1;
$contributors = array("Aaron", "Samuel", "Vanja", "Phu");
shuffle($contributors);
foreach ($contributors as $contributor){
if($i > 1){
print " ";
}
else{
print " ";
}
print '<a href="javascript:displayContributor(' . "'" . "$contributor" . "'" . ")\">$contributor.</a> " . "\n";
$i++;
}
?>
</strong>
</p>
<p>
<div id="default">
<img src="media/incognito.png" alt="No contributor selected." width="20%" height="20%"/>
</div>
<div id="Aaron" style="display: none;">
<img src="media/aaron.png" alt="Aaron." width="20%" height="20%"/>
<p style="font-size: 85%;">
Aaron is a final year Associate Degree of Information Technology student, <br>and has previously completed a Certificate IV in Information Technology Networking at RMIT.
</p>
<p style="font-size: 85%;">
Aaron expects to complete the Bachelor’s Degree of Information Technology in 2017.
</p>
<p style="font-size: 85%;">
<i class="fa fa-linkedin" aria-hidden="true"></i> - <a href="https://www.linkedin.com/in/aghorler">LinkedIn</a>
</p>
</div>
<div id="Samuel" style="display: none;">
<img src="media/samuel.png" alt="Sameul." width="20%" height="20%"/>
<p style="font-size: 85%;">
Samuel is a final year Associate Degree of Information Technology student, <br>and has previously completed a Certificate IV in Information Technology Networking at RMIT.
</p>
<p style="font-size: 85%;">
Samuel expects to complete the Bachelor’s Degree of Information Technology in 2018.
</p>
<p style="font-size: 85%;">
<i class="fa fa-linkedin" aria-hidden="true"></i> - <a href="https://www.linkedin.com/in/samuel-thwin-67285996">LinkedIn</a>
</p>
</div>
<div id="Phu" style="display: none;">
<img src="media/phu.png" alt="Phu." width="20%" height="20%"/>
<p style="font-size: 85%;">
Phu is a first year Bachelor’s Degree of Information Technology student.
</p>
</div>
<div id="Vanja" style="display: none;">
<img src="media/vanja.png" alt="Vanja." width="20%" height="20%"/>
<p style="font-size: 85%;">
Vanja is a first year Bachelor’s Degree of Information Technology student.
</p>
<p style="font-size: 85%;">
<i class="fa fa-linkedin" aria-hidden="true"></i> - <a href="https://www.linkedin.com/in/vanja-novakovic-a07463123">LinkedIn</a>
</p>
</div>
</p>
<p style="font-size: 75%;">
Click a contributors name for more information.
</p>
<hr>
<h2>Project information</h2>
<p>
We made a prototype open source cloud file storage and sharing website with user-managed encryption that uses keys determined solely by the user on a per-upload basis.
</p>
<?php
include("inc/footer.inc");
?>