Demo

Probiere ClanSphere aus und teste daran herum. Demo

Nopaste Service - action_form
pdsteff

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
<form method="post" id="static" action="{url:static_create}">
<table class="forum" cellpadding="0" cellspacing="{page:cellspacing}" style="width:{page:width}">
  <tr>
    <td class="leftc" style="width: 100px;">{icon:kedit} Titel *</td>
    <td class="leftb"><input name="static_title" value="{static:title}" maxlength="50" size="50"  type="text" />
   </td>
  </tr>
  <tr>
    <td class="leftc">{icon:enumList} {lang:access} *</td>
    <td class="leftb">   <select name="static_access">
{loop:access}
    <option value="{access:level_id}" {access:selected}>{access:level_id} - {access:level_name}</option>
{stop:access}
   </select>
   </td>
  </tr>
{if:no_rte_html}
<tr>
<td class="leftc">{icon:kedit} Inhalt *</td>
<td class="leftb">{abcode:features} {if:access_php}<input type="button" name="phpcode" value="phpcode" onclick="javascript:abc_insert('[phpcode]','[/phpcode]','static_text','')" />{stop:access_php}
<textarea name="static_text" cols="99" rows="35" id="static_text"  style="width: 98%;">{static:content}</textarea></td>
</tr>
{stop:no_rte_html}
{if:rte_html}
<tr>
<td class="leftc" colspan="2">{icon:kedit} Inhalt *</td>
</tr>
<tr>
<td colspan="2" style="padding:0px">{static:content}</td>
</tr>
{stop:rte_html}
  <tr>
    <td class="leftc">{icon:configure} {lang:config}</td>
    <td class="leftb">{if:access_admin}<input type="checkbox" name="static_admins" value="1" {check:admin}/> {lang:admins_only}<br />{stop:access_admin}
  <input type="checkbox" name="static_table" value="1"  {static:table} /> {lang:tablelayout}<br />
<input type="checkbox" name="static_comments" value="1"  {static:comments} /> {lang:activate_comments}<br /></td>
  </tr>
  <tr>
    <td class="leftc">{icon:ksysguard} Optionen</td>
    <td class="leftb">
    <input type="submit" name="submit" value="{static:lang_form}" />
    <input type="submit" name="preview" value="Vorschau" />
         <input type="hidden" name="id" value="{static:id}" />
     </td>
  </tr>
</table>
</form>