-
Notifications
You must be signed in to change notification settings - Fork 1
/
about-us.php
105 lines (76 loc) · 5.17 KB
/
about-us.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
<?php
if(!isset($_COOKIE["lang"])) {
$query = json_decode(file_get_contents('https://freegeoip.net/json/'.$_SERVER['REMOTE_ADDR']));
$country=$query->{'country_code'};
if($country=="GR"){
setcookie("lang", "GR", time() + (86400 * 30), "/");
}
else
{
setcookie("lang", "ENG", time() + (86400 * 30), "/");
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>About Us</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src = 'http://code.jquery.com/jquery-1.8.2.min.js'></script>
<link href="css/theme.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
</head>
<body>
<section class="container">
<?php include('menu.php'); ?>
<?php if($_COOKIE["lang"]=="GR"){ ?>
<!-- Greek -->
<div class="jumbotron" style="text-align: center">
<h1>Σχετικά με την ομάδα μας</h1>
<div style="text-align: left;" class = "content">
<p>Το παρόν site είναι κομμάτι ενός project από μια ομάδα φοιτητών του Τμήματος Μηχανικών Πληροφορικής και Τηλεπικοινωνιών του Πανεπιστημίου Δυτικής Μακεδονίας. </p>
<p>Στόχος ήταν η δημιουργία ενός μετρητή Watt με την βοήθεια ενός μικροελεγκτή Arduino. Στην συνέχεια τα δεδομένα από το Arduino μέσω σύνδεσης με το διαδίκτυο εμφανίζονται σε ζωντανό χρόνο σε αυτή την ιστοσελίδα.</p>
<p>Πέρα από τη live ένδειξη κατανάλωσης δίνεται η δυνατότητα παρουσίασης δεδομένων παρελθοντικών μετρήσεων με την μορφή διαγράμματος.</p>
<p>
<p>
<h3>Η ομάδα αποτελείται από 4 άτομα :</h3>
<ul>
<li>Γιώργος Στεφανίδης | <a href="https://www.facebook.com/georgestef" <i class="fa fa-facebook-official"></a></i> | <a href="https://gr.linkedin.com/in/stefanidisgeorge" <i class="fa fa-linkedin"></a> | <a href="mailto:[email protected]" <i class="fa fa-envelope"></a> </li>
<li>Αλέξανδρος Μόδης | <a href="https://www.facebook.com/alexander.modis" <i class="fa fa-facebook-official"></a></i> | <a href="https://gr.linkedin.com/in/alexmodis" <i class="fa fa-linkedin"></i></a> | <a href="mailto:[email protected]" <i class="fa fa-envelope"></a> </li>
<li>Γιώργος Δήμας | <a href="https://www.facebook.com/geodimas" <i class="fa fa-facebook-official"></a></i> |<a href="https://gr.linkedin.com/in/geodhmas" <i class="fa fa-linkedin"></i> </a>| <a href="#" <i class="fa fa-envelope"></a> </li>
<li>Βασίλης Μπαλάφας | <a href="https://www.facebook.com/Vasilis197" <i class="fa fa-facebook-official"></a></i> | <i class="fa fa-linkedin"></i> | <a href="mailto:[email protected]" <i class="fa fa-envelope"></a> </li>
</ul>
</div>
</div>
<!-- End Greek -->
<?php } else { ?>
<!-- English-->
<div class="jumbotron" style="text-align: center">
<h1>About Us</h1>
<div style="text-align: left;" class = "content">
<p>This website is part of a project from a team of students of Department of Informatics Telecommunications Engineering of University of Western Macedonia</p>
<p>The target was the construction of a Watt cosmumption counter with the help of an Arduino microcontroller. Then we present the stats we got from the Arduino in this website.</p>
<p>Beyond the live indication of the consumption, there is the ability to present past data with the form of graphs.</p>
<p>
<p>
<h3>The team consists of 4 people :</h3>
<ul>
<li>George Stefanidis | <a href="https://www.facebook.com/georgestef" <i class="fa fa-facebook-official"></a></i> | <a href="https://gr.linkedin.com/in/stefanidisgeorge" <i class="fa fa-linkedin"></a> | <a href="mailto:[email protected]" <i class="fa fa-envelope"></a> </li>
<li>Alexandros Modis | <a href="https://www.facebook.com/alexander.modis" <i class="fa fa-facebook-official"></a></i> | <a href="https://gr.linkedin.com/in/alexmodis" <i class="fa fa-linkedin"></i></a> | <a href="mailto:[email protected]" <i class="fa fa-envelope"></a> </li>
<li>George Dimas | <a href="https://www.facebook.com/geodimas" <i class="fa fa-facebook-official"></a></i> |<a href="https://gr.linkedin.com/in/geodhmas" <i class="fa fa-linkedin"></i> </a>| <a href="#" <i class="fa fa-envelope"></a> </li>
<li>Vasilis Balafas | <a href="https://www.facebook.com/Vasilis197" <i class="fa fa-facebook-official"></a></i> | <i class="fa fa-linkedin"></i> | <a href="mailto:[email protected]" <i class="fa fa-envelope"></a> </li>
</ul>
</div>
</div>
<!-- End English -->
<?php } ?>
<div class="row">
<div class="col-lg-4">
</div>
</div>
<div class="row">
<div class="col-sm-12" style="text-align: center;" > Copyright © Watt Meter 2015</div>
</div>
</section>
</body>
</html>