Completed
Push — master ( 710747...fb0372 )
by mains
02:59
created

about-us.php (8 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php include 'php/jodel-web.php';
2
$title = 'About us - JodelBlue Web-App and Browser-Client';
0 ignored issues
show
Equals sign not aligned with surrounding assignments; expected 7 spaces but found 1 space

This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line.

To visualize

$a = "a";
$ab = "ab";
$abc = "abc";

will produce issues in the first and second line, while this second example

$a   = "a";
$ab  = "ab";
$abc = "abc";

will produce no issues.

Loading history...
3
$description = 'We try to get the best Jodel experience on your Browser. This allows you to use jodel on your desktop PC or Windows Phone. I am pleased if you participate in the development on GitHub.';
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 202 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
4
$backButton = '';
0 ignored issues
show
Equals sign not aligned with surrounding assignments; expected 2 spaces but found 1 space

This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line.

To visualize

$a = "a";
$ab = "ab";
$abc = "abc";

will produce issues in the first and second line, while this second example

$a   = "a";
$ab  = "ab";
$abc = "abc";

will produce no issues.

Loading history...
5
include 'templates/header.php';
6
?>	
7
<div class="mainContent container">		
8
	<div class="content row">
9
		<article class="topContent col-sm-12">
10
11
			<content id="posts">
12
				<article id="aboutUs" class="jodel" style="background-color: #5682a3;">
13
					<content>
14
						<article>
15
							<h2>About us</h2>
16
17
							<p>This page was not created by "The Jodel Venture GmbH", the official developers of the Jodel app.</p>
18
							<p>All content is from the official Jodel app, all rights remain with the respective owners. We do not store any data or spread them.</p>
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 144 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
19
20
							<p>If you find bugs or want to help me developing the project, feel free to contact me:</p>
21
							<p>[email protected]</p>
22
23
							<p><a style="color: #fff; text-decoration: underline;" href="https://github.com/mmainstreet/jodel-web">JodelBlue on GitHub</a></p>
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 137 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
24
						</article>
25
						<hr>
26
						<article>
27
							<div>
28
								<h2>Donate to JodelBlue</h2>
29
30
								<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
31
								<input type="hidden" name="cmd" value="_s-xclick">
32
								<input type="hidden" name="hosted_button_id" value="RR45538QV3VXE">
33
								<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 171 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
34
								<img alt="" border="0" src="https://www.paypalobjects.com/de_DE/i/scr/pixel.gif" width="1" height="1">
35
								</form>
36
								
37
								<p class="bitcoin-address">Bitcoin-address: <a href="img/bitcoin-address.png">1DzaUWm9Du6CUQLj6QTGC9kpxzKE3yZZHV</a></p>
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 128 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
38
39
								<progress max="3500" value="2111"></progress>
40
								<p>
41
									My payments to keep this Project up so far:
42
								</p>
43
								<ul>
44
									<li>Webspace 15€ - goes till 01-03-2018</li>
45
									<li>Domain 20€ - goes till 06-12-2017</li>
46
								</ul>
47
							</div>
48
						</article>
49
						<hr>
50
						<article>
51
							<div>
52
								<h2>Beta - Votebot</h2>
53
54
								<p>The Beta for the vote bot feature is starting soon. You are cordially invited to test. Please contact us: [email protected]</p>
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 139 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
55
							</div>
56
						</article>
57
					</content>
58
59
					<footer>
60
						<table>
61
							<tr>
62
								<td class="time">
63
									<span data-tooltip="Time">
64
										<i class="fa fa-clock-o"></i>
65
										0s
66
									</span> 
67
								</td>
68
								<td class="comments">
69
								</td>
70
								<td class="distance">
71
									<span data-tooltip="Author">
72
										<i class="fa fa-user-o"></i> JodelBlue |
73
									</span>
74
									<span data-tooltip="Distance">
75
										<i class="fa fa-map-marker"></i>
76
										0 km
77
									</span>
78
								</td>
79
							</tr>
80
						</table>
81
					</footer>
82
				</article>
83
84
			</content>
85
		</article>
86
	</div>
87
	<?php include 'templates/nav-bottom.php';?>
88
</div>
89
<?php include 'templates/footer.php';?>