-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslider_settings_page.php
More file actions
39 lines (37 loc) · 1.38 KB
/
slider_settings_page.php
File metadata and controls
39 lines (37 loc) · 1.38 KB
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
<?php
?>
<h1>General Settings Page</h1>
<form action="" method="post" class="entry-form">
<h4>Title</h4><input type="text" name="slider_title"></br>
<h4>Delay</h4><input type="text" name="delay"></br>
<h4>State</h4>
<select name="state">
<option value="draft">Draft</option>
<option value="published">Published</option>
<option value="pending">Pending</option>
</select></br>
<h4>Height</h4><input type="text" name="height">
<select name="height_metric">
<option value="px">Pixels</option>
<option value="%">Percent</option>
</select></br>
<h4>Width</h4><input type="text" name="width">
<select name="width_metric" >
<option value="px" selected >Pixels</option>
<option value="%">Percent</option>
</select></br>
<h4>Background Color</h4><input type="text" class="jscolor" name="bgcolor"></br>
<h4>Effect</h4>
<select name="effect">
<option value="fader">Fade</option>
<option value="slide_vertical">Slide Vertical</option>
<option value="slide_left">Slide Left</option>
<option value="slide_right">Slide Right</option>
<option value="toggle">Standard Toggle</option>
<option value="rotate">Invert</option>
</select></br>
<h4 style="display:inline-block;">Autoplay</h4>
<input type="checkbox" name="autoplay" value="true" class="checkbox"></input>
<input type="hidden" name="add_new_slider" value="1"></br>
<input type="submit" name="" value="Create"></br>
</form>