aboutsummaryrefslogtreecommitdiff
path: root/www/register.php
blob: 39d22f988b1767bd5b4261a1c3d248ee461fefd7 (plain)
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
<?php

/* Copyright Maximilian Möhring, 2013
Licensed under the GPL. Read LICENSE for more Information.*/

include('auth.php');
include("header.php");

if ($_GET["false"] == 1){
$failure= "<div style='color:red;'>Fehler! Entweder ist der Nutzer schon registriert oder dein Passwort war leer!</div><br>";
}

echo "

<div id='content_container' align='center'>
        <br>
        <div class='kleineschrift'>
	        <div class='ueberschrift'>
			<p>JUNGE GEMEINDE ADLERSHOF</p>
	        </div>



<br><div style='width:800px;' id='behaelter' align='center' class='katze'>
Registriere dich, um einen persönlichen Zugang zu erhalten. Such dir einen beliebigen Spitznamen und ein geeignetes Passwort aus. Keine Angst, dein Passwort wird sicher verwahrt und nicht im Klartext abgelegt.
<br><br>Die E-Mail Adresse ist keine Pflicht, aber notwendig, wenn du dein Passwort vergessen hast.
<br/><br/>

$failure

<div class='katze'>
<form method='post' action='inreg.php'>
<table width='320px'>
<tr>
	<td align='left'><p>Name:</td><td align='right'><input name='name' type='text' size='20' maxlength='30'></p></td>
</tr>
<tr>
	<td align='left'><p>Passwort:</td><td align='right'><input name='pswd' type='password' size='20' maxlength='30'></p></td>
</tr>
<tr><td align='left'><p>E-Mail:</td> <td align='right'><input name='email' type='text' size='20' maxlength='30'></p></td>
</tr>
</table>
<center><input type='submit' name='submit' value='Register'/></center>
</form>
</div>

</div>
</body>
</html>
";



?>