]> git.p6c8.net - jirafeau.git/commitdiff
[FEATURE] Styles: Add classes to forms
authorDan Untenzu <untenzu@webit.de>
Thu, 30 Mar 2017 13:55:34 +0000 (15:55 +0200)
committerDan Untenzu <untenzu@webit.de>
Thu, 30 Mar 2017 14:03:42 +0000 (16:03 +0200)
Enable better styling for classes.

admin.php
f.php
index.php

index 230c512954dabe8c54dfc0a14ea53c511e240d57..17189da6ab8f02f71a6a6837994049b8a2bc047a 100644 (file)
--- a/admin.php
+++ b/admin.php
@@ -78,7 +78,7 @@ if (php_sapi_name() == "cli") {
   elseif ((!isset($_SESSION['admin_auth']) || $_SESSION['admin_auth'] != true)
           && empty($cfg['admin_http_auth_user'])) {
       require(JIRAFEAU_ROOT . 'lib/template/header.php'); ?>
   elseif ((!isset($_SESSION['admin_auth']) || $_SESSION['admin_auth'] != true)
           && empty($cfg['admin_http_auth_user'])) {
       require(JIRAFEAU_ROOT . 'lib/template/header.php'); ?>
-      <form method="post">
+      <form method="post" class="form login">
       <fieldset>
           <table>
           <tr>
       <fieldset>
           <table>
           <tr>
diff --git a/f.php b/f.php
index d94b55b381df8b08a2b1ec2b2521f340820dfcfd..0f40638cf5508783592b7cba788d6f603ea04e58 100644 (file)
--- a/f.php
+++ b/f.php
@@ -126,7 +126,7 @@ if (!empty($link['key'])) {
              '<form action = "';
         echo JIRAFEAU_ABSPREFIX . 'f.php';
         echo '" ' .
              '<form action = "';
         echo JIRAFEAU_ABSPREFIX . 'f.php';
         echo '" ' .
-             'method = "post" id = "submit_post">'; ?>
+             'method="post" id="submit_post" class="form login">'; ?>
              <input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
         echo '<fieldset>' .
              '<legend>' . t('Password protection') .
              <input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
         echo '<fieldset>' .
              '<legend>' . t('Password protection') .
@@ -182,7 +182,7 @@ if (!$password_challenged && !$do_download && !$do_preview) {
              '<form action="';
     echo JIRAFEAU_ABSPREFIX . 'f.php';
     echo '" ' .
              '<form action="';
     echo JIRAFEAU_ABSPREFIX . 'f.php';
     echo '" ' .
-             'method = "post" id = "submit_post">'; ?>
+             'method="post" id="submit_post" class="form download">'; ?>
              <input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
         echo '<fieldset><legend>' . htmlspecialchars($link['file_name']) . '</legend><table>' .
              '<tr><td>' .
              <input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
         echo '<fieldset><legend>' . htmlspecialchars($link['file_name']) . '</legend><table>' .
              '<tr><td>' .
index 09b37e4f00824acd17f5e69dd22baa67b6d24146..9a7b9ec4d81ced114394b61a2e679c7013f96c33 100644 (file)
--- a/index.php
+++ b/index.php
@@ -60,7 +60,7 @@ if (true === jirafeau_challenge_upload_ip($cfg['upload_ip'], get_ip_address($cfg
         // Show login form if user session is not authorized yet
         if (true === empty($_SESSION['upload_auth'])) {
             ?>
         // Show login form if user session is not authorized yet
         if (true === empty($_SESSION['upload_auth'])) {
             ?>
-            <form method="post">
+            <form method="post" class="form login">
             <fieldset>
                 <table>
                 <tr>
             <fieldset>
                 <table>
                 <tr>
@@ -245,7 +245,7 @@ else {
     <?php
     if (jirafeau_has_upload_password($cfg)) {
         ?>
     <?php
     if (jirafeau_has_upload_password($cfg)) {
         ?>
-    <form method="post">
+    <form method="post" class="form logout">
         <input type = "hidden" name = "action" value = "logout"/>
         <input type = "submit" value = "<?php echo t('Logout'); ?>" />
     </form>
         <input type = "hidden" name = "action" value = "logout"/>
         <input type = "submit" value = "<?php echo t('Logout'); ?>" />
     </form>

patrick-canterino.de