Example #1
0
			<tbody>
				<tr>
		        	<td><?php 
    echo $u->getUserId();
    ?>
</td>
		        	<td><?php 
    echo $u->getUserName();
    ?>
</td>
		        	<td><?php 
    echo $u->getUserEmail();
    ?>
</td>
		        	<td><?php 
    echo $u->getUserNotify() == 1 ? 'Notify' : '';
    ?>
</td></td>
		        	<td><?php 
    echo $u->getApiKey();
    ?>
</td>

		        
		    	</tr> 
			</tbody>
		</table>
	</div>
	<div class="modal-footer">
        <button type="button" class="btn btn-default left" data-dismiss="modal">Close</button>
        <?php 
Example #2
0
?>
" required>
			  	</div>

			  	<div class="form-group <?php 
WEB::_ferror('user_password', $form_error);
?>
">
			    	<label class="control-label" for="user_password">User Password *</label>
			    	<input type="password" class="form-control" placeholder="Enter User Password" id="user_email" name="user_password" value="">
			  	</div>

			  	<div class="checkbox">
				    <label>
				      <input type="checkbox" name="user_notify" <?php 
echo $u->getUserNotify() == 1 ? 'checked' : '';
?>
> Notify
				    </label>
				</div>


				<button type="submit" class="btn btn-default">Submit</button>

			</form>
		</div>
	</div>

<?php 
include __DIR__ . "/../bourbon/template/footer.php";
?>