Completed
Pull Request — master (#53)
by
unknown
01:49
created
examples/pdo/index.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -94,15 +94,15 @@  discard block
 block discarded – undo
94 94
         <?php
95 95
 
96 96
         if($_SERVER['REQUEST_METHOD'] === 'POST') {
97
-          if(!$_POST['username']) {
97
+            if(!$_POST['username']) {
98 98
             echo "alert('no username provided!');";
99
-          } else if(!isset($_POST['action']) && !isset($_POST['register2']) && !isset($_POST['authenticate2'])) {
99
+            } else if(!isset($_POST['action']) && !isset($_POST['register2']) && !isset($_POST['authenticate2'])) {
100 100
             echo "alert('no action provided!');";
101
-          } else {
101
+            } else {
102 102
             $user = createAndGetUser($_POST['username']);
103 103
 
104 104
             if(isset($_POST['action'])) {
105
-              switch($_POST['action']):
105
+                switch($_POST['action']):
106 106
                 case 'register':
107 107
                   try {
108 108
                     $data = $u2f->getRegisterData(getRegs($user->id));
@@ -130,11 +130,11 @@  discard block
 block discarded – undo
130 130
             });
131 131
         }, 1000);
132 132
         <?php
133
-                  } catch( Exception $e ) {
133
+                    } catch( Exception $e ) {
134 134
                     echo "alert('error: " . $e->getMessage() . "');";
135
-                  }
135
+                    }
136 136
 
137
-                  break;
137
+                    break;
138 138
 
139 139
                 case 'authenticate':
140 140
                   try {
@@ -157,34 +157,34 @@  discard block
 block discarded – undo
157 157
             });
158 158
         }, 1000);
159 159
         <?php
160
-                  } catch( Exception $e ) {
160
+                    } catch( Exception $e ) {
161 161
                     echo "alert('error: " . $e->getMessage() . "');";
162
-                  }
162
+                    }
163 163
 
164
-                  break;
164
+                    break;
165 165
 
166
-              endswitch;
166
+                endswitch;
167 167
             } else if($_POST['register2']) {
168
-              try {
168
+                try {
169 169
                 $reg = $u2f->doRegister(json_decode($_SESSION['regReq']), json_decode($_POST['register2']));
170 170
                 addReg($user->id, $reg);
171
-              } catch( Exception $e ) {
171
+                } catch( Exception $e ) {
172 172
                 echo "alert('error: " . $e->getMessage() . "');";
173
-              } finally {
173
+                } finally {
174 174
                 $_SESSION['regReq'] = null;
175
-              }
175
+                }
176 176
             } else if($_POST['authenticate2']) {
177
-              try {
177
+                try {
178 178
                 $reg = $u2f->doAuthenticate(json_decode($_SESSION['authReq']), getRegs($user->id), json_decode($_POST['authenticate2']));
179 179
                 updateReg($reg);
180 180
                 echo "alert('success: " . $reg->counter . "');";
181
-              } catch( Exception $e ) {
181
+                } catch( Exception $e ) {
182 182
                 echo "alert('error: " . $e->getMessage() . "');";
183
-              } finally {
183
+                } finally {
184 184
                 $_SESSION['authReq'] = null;
185
-              }
185
+                }
186
+            }
186 187
             }
187
-          }
188 188
         }
189 189
         ?>
190 190
     </script>
Please login to merge, or discard this patch.