summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorGuillaume Mazoyer <respawneral@gmail.com>2014-06-03 09:46:18 +0200
committerGuillaume Mazoyer <respawneral@gmail.com>2014-06-03 09:46:18 +0200
commit1508b3780dff32ac878d20ebb1d41ebfc27c5909 (patch)
tree4c65b1dd384182e20d0217b31631e551ec7de3fd /index.php
parente6139ed2a2f518a2590124892406cfd688aff331 (diff)
Disable form elements when the form is submitted.
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/index.php b/index.php
index 2e38c69..343843a 100644
--- a/index.php
+++ b/index.php
@@ -101,6 +101,7 @@ final class LookingGlass {
private function render_content() {
print '<div class="content" id="command_options">';
print '<form role="form" action="execute.php" method="post">';
+ print '<fieldset id="command_properties">';
foreach ($this->frontpage['order'] as $element) {
switch ($element) {
@@ -125,6 +126,7 @@ final class LookingGlass {
}
}
+ print '</fieldset>';
print '</form>';
print '</div>';
print '<div class="loading">';