Guest User

Untitled

a guest
Aug 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.05 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <meta charset="UTF-8">
  5.     <title>title</title>
  6.   </head>
  7.   <body>
  8.  
  9.   <<?php
  10.   include "db_connect.php";
  11.   include "headerstyle.php";
  12.    ?>
  13.  
  14.   <form class="form-horizontal">
  15. <fieldset>
  16.  
  17. <!-- Text input-->
  18.  
  19.  
  20.  
  21. <div class="form-group">
  22.   <label class="col-md-4 control-label" for="hours">Employee ID</label>
  23.   <div class="col-md-4">
  24.   <input id="hours" name="hours" type="text" placeholder="" class="form-control input-md">
  25.  
  26.   </div>
  27. </div>
  28.  
  29. <!-- Text input-->
  30. <div class="form-group">
  31.   <label class="col-md-4 control-label" for="hoursvalue">Hours Worked</label>
  32.   <div class="col-md-4">
  33.   <input id="hoursvalue" name="hoursvalue" type="text" placeholder="" class="form-control input-md">
  34.  
  35.   </div>
  36. </div>
  37.  
  38. <!-- Button -->
  39.  
  40. <div class="form-group">
  41.   <label class="col-md-4 control-label" for="calculate">Calculate</label>
  42.   <div class="col-md-4">
  43.     <button id="calculate" name="calculate" class="btn btn-success">Calculate</button>
  44.   </div>
  45. </div>
  46.  
  47. </fieldset>
  48. </form>
  49.  
  50.  
  51.  
  52.   </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment