-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_squad.php
40 lines (37 loc) · 1.12 KB
/
add_squad.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
<?php
INCLUDE 'setup.php' ;
INCLUDE ($langinclude) ;
?>
<head>
<title>SquadXML-Editor SQLite</title>
<link rel="stylesheet" type="text/css" href="squadxml.css">
</head>
<body>
<form method="POST" action="save_newsquad.php">
<table class="ab">
<tr>
<td class="keytext">Name</td><td><input type="text" name="s_name" size="50" value=""></td>
</tr>
<tr>
<td class="keytext">EMail</td><td><input type="text" name="s_email" size="50" value=""></td>
</tr>
<tr>
<td class="keytext">Web</td><td><input type="text" name="s_web" size="50" value=""></td>
</tr>
<tr>
<td class="keytext">Picture</td><td><input type="text" name="s_picture" size="50" value=""></td>
</tr>
<tr>
<td class="keytext">Title</td><td><input type="text" name="s_title" size="50" value=""></td>
</tr>
<tr>
<td class="keytext">Prefix</td><td><input type="text" name="s_filenameprefix" size="50" value=""></td>
</tr>
</table>
<p align="left">
<input type="submit" value="<?php echo $lng_buttonSave; ?>" name="save">
<input type="button"value="<?php echo $lng_buttonChancel; ?>" onclick="history.back()">
</p>
</form>
</body>
</html>