| 39 |
lars |
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
2 |
<html>
|
|
|
3 |
<head>
|
|
|
4 |
<title>FIFA {$type} {$year} - Installation - Schritt {$step}</title>
|
|
|
5 |
<link href="./images/favicon.ico" rel="shortcut icon" type="image/x-icon">
|
|
|
6 |
<link rel="stylesheet" href="./styles/Standard.css" type="text/css">
|
|
|
7 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
|
8 |
{literal}
|
|
|
9 |
<script type="text/javascript" language="javascript">
|
|
|
10 |
function check_anz_form()
|
|
|
11 |
{
|
|
|
12 |
var g_anz=document.anzahl.g_anz.value;
|
|
|
13 |
var t_anz=document.anzahl.t_anz.value;
|
|
|
14 |
if(g_anz <=0)
|
|
|
15 |
{
|
|
|
16 |
window.alert("Die Anzahl der Gruppen muß eine positive Zahl größer 0 sein!");
|
|
|
17 |
document.anzahl.g_anz.focus();
|
|
|
18 |
return false;
|
|
|
19 |
}
|
|
|
20 |
if(t_anz <=0)
|
|
|
21 |
{
|
|
|
22 |
window.alert("Die Anzahl der Mannschaften je Gruppe muß eine positive Zahl größer 0 sein!");
|
|
|
23 |
document.anzahl.t_anz.focus();
|
|
|
24 |
return false;
|
|
|
25 |
}
|
|
|
26 |
}
|
|
|
27 |
</script>
|
|
|
28 |
{/literal}
|
|
|
29 |
</head>
|
|
|
30 |
<body onLoad="javascript:anzahl.g_anz.focus();">
|
|
|
31 |
<h1>FIFA {$type} {$year} - Installation - Schritt {$step}</h1>
|
| 74 |
lars |
32 |
{$L_WELCOME}<br>
|
|
|
33 |
{$L_STEP2_1}<br><br>
|
| 39 |
lars |
34 |
<form name="anzahl" method="post" action="{$SCRIPT_NAME}" onsubmit="return check_anz_form();">
|
|
|
35 |
<table>
|
|
|
36 |
<tr>
|
|
|
37 |
<th>Eigenschaft</th>
|
|
|
38 |
<th>Wert</th>
|
|
|
39 |
</tr>
|
|
|
40 |
<tr>
|
|
|
41 |
<td>Anzahl der Grupppen:</td>
|
|
|
42 |
<td><input type="text" name="g_anz" value="{$g_anz}" class="post"></td>
|
|
|
43 |
</tr>
|
|
|
44 |
<tr>
|
|
|
45 |
<td>Anzahl der Mannschaften je Gruppe:</td>
|
|
|
46 |
<td><input type="text" name="t_anz" value="{$t_anz}" class="post"></td>
|
|
|
47 |
</tr>
|
|
|
48 |
<tr>
|
|
|
49 |
<td class="catBottom" colspan="2">
|
|
|
50 |
<input type="submit" value="weiter >>" class="mainoption">
|
|
|
51 |
<input type="hidden" name="type" value="{$type}">
|
|
|
52 |
<input type="hidden" name="mode" value="step3">
|
|
|
53 |
<input type="hidden" name="year" value="{$smarty.now|date_format:"%Y"}">
|
|
|
54 |
</td>
|
|
|
55 |
</tr>
|
|
|
56 |
</table>
|
|
|
57 |
</form>
|
|
|
58 |
{include file="footer.tpl"}
|