forked from do1eh/geodetective
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplashscreen.php
More file actions
executable file
·62 lines (54 loc) · 2.1 KB
/
splashscreen.php
File metadata and controls
executable file
·62 lines (54 loc) · 2.1 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/*
* Created on 27.10.2024
* updated on 27.10.2024
*
* Wenn fertig dann:
* <option value="fr">Français</option>
* <option value="nl">Nederlands</option>
*
*/#
include("./templatelogin.php");
?>
<center>
<img src="images/GeoDetective-JOTA-JOTI.png" class="responsive">
<h1>Login</h1>
<form action="user/login.php" method="post">
Language:
<select id="language" name="language" required>
<option value="de" <?php if ($_SESSION['language'] =='de') {echo ' selected ';} ?>>Deutsch</option>
<option value="en" <?php if ($_SESSION['language'] =='en') {echo ' selected ';} ?>>English</option>
<option value="fr" <?php if ($_SESSION['language'] =='fr') {echo ' selected ';} ?>>Français</option>
<option value="nl" <?php if ($_SESSION['language'] =='nl') {echo ' selected ';} ?>>Nederlands</option>
<option value="it" <?php if ($_SESSION['language'] =='it') {echo ' selected ';} ?>>Italiano</option>
</select><br><br>
<input type="text" name="username" placeholder="<?=username?>" ><br>
<input type="password" name="password" placeholder="<?=password?>" >
<br>
<?php
if(isset($msg)) {
echo'<span style="color:red;">'.errorwrongpassword.'<br></span>';
}
?>
<button type="submit" name="login">Login</button>
<button type="submit" name="register">Register</button>
</form>
<hr>
<div id="credits">
<B>Credits:</B><BR>
Spielidee:<BR>
<li>Woody und JOTI/JOTA Team der PBS<BR>
Entwicklung:<BR>
<li>Ralf Lüsebrink / DO1EH<BR>
<li>Benoît Panizzon / Woody / HB9EUE<BR>
Übersetzungen:<BR>
<li>NL: Sander Krul<BR>
Tester:<BR>
<li>Thomas Pfaff / Pepe / HB9EVT<BR>
Source: <a href="https://github.com/do1eh/geodetective">https://github.com/do1eh/geodetective</a><BR>
Impressum / Datenschutz: Es gilt das Impressum und die Datenschutzbestimmungen der jeweiligen Landesverbände: <a href="https://jota-joti.pbs.ch/de/impressum-datenschutzerklaerung/">Pfadibewegung Schweiz</a> die das Spiel organisieren.
</div>
</center>
<?php
include("./templateunten.php");
?>