welcome on board new 'Sparkle' theme and also welcome on board BNoiZe as theme maintainer (creater of Sparkle theme)
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
4
templates/Sparkle/formfields/bool.tpl
vendored
Normal file
4
templates/Sparkle/formfields/bool.tpl
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<tr>
|
||||
<td>{$label}</td>
|
||||
<td><input type="checkbox" name="{$fieldname}" value="1" <if( $fielddata['value'] == '1' )>checked="checked"</if> /></td>
|
||||
</tr>
|
||||
4
templates/Sparkle/formfields/hidden.tpl
vendored
Normal file
4
templates/Sparkle/formfields/hidden.tpl
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<tr>
|
||||
<td>{$label}</td>
|
||||
<td>{$fielddata['value']}</td>
|
||||
</tr>
|
||||
4
templates/Sparkle/formfields/hiddenstring.tpl
vendored
Normal file
4
templates/Sparkle/formfields/hiddenstring.tpl
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<tr>
|
||||
<td>{$label}</td>
|
||||
<td><input type="password" class="text" name="{$fieldname}" value="{$value}" /></td>
|
||||
</tr>
|
||||
3
templates/Sparkle/formfields/label.tpl
vendored
Normal file
3
templates/Sparkle/formfields/label.tpl
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
<tr>
|
||||
<td colspan="2">$label</td>
|
||||
</tr>
|
||||
4
templates/Sparkle/formfields/option.tpl
vendored
Normal file
4
templates/Sparkle/formfields/option.tpl
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<tr>
|
||||
<td>{$label}</td>
|
||||
<td><select name="{$fieldname}<if $multiple == true>[]</if>"<if $multiple == true> multiple="multiple"</if>>{$options}</select></td>
|
||||
</tr>
|
||||
4
templates/Sparkle/formfields/string.tpl
vendored
Normal file
4
templates/Sparkle/formfields/string.tpl
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<tr>
|
||||
<td>{$label}</td>
|
||||
<td><input type="text" class="text" name="{$fieldname}" value="{$value}" /></td>
|
||||
</tr>
|
||||
4
templates/Sparkle/formfields/text.tpl
vendored
Normal file
4
templates/Sparkle/formfields/text.tpl
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<tr>
|
||||
<td>{$label}</td>
|
||||
<td><textarea rows="12" cols="40" name="{$fieldname}">{$value}</textarea></td>
|
||||
</tr>
|
||||
Reference in New Issue
Block a user