Advertisement
Guest User

Untitled

a guest
Nov 24th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Cursist toevoegen</title>
  5.     <?php
  6.         echo $head;
  7.     ?>
  8. </head>
  9. <body>
  10.     <?php
  11.     echo $header;
  12.     ?>
  13.         <div class="row">
  14.             <h2 class="col-sm-offset-2 col-sm-10">Cursist toevoegen</h2>
  15.         </div>
  16.         <form class="form-horizontal" role="form" method="post" action="cursisten_2.php">
  17.         <div class="form-group">
  18.             <label class="control-label col-sm-2" for="firstName">username:</label>
  19.             <div class="col-sm-10">
  20.                 <input class="form-control" required="required" type="text" name="firstName" id="firstName" placeholder="Fill in your username" />
  21.             </div>
  22.         </div>
  23.         <div class="form-group">
  24.             <label class="control-label col-sm-2" for="password">Password:</label>
  25.             <div class="col-sm-10">
  26.                 <input class="form-control" required="required" type="password" name="lastName" id="lastName" placeholder="Vul uw naam in" />
  27.             </div>
  28.         </div>
  29.        
  30.             <div class="form-group">
  31.                 <div class="col-sm-offset-2 col-sm-10">
  32.                     <button class="form-control btn-default" type="submit">Bevestigen</button>
  33.                     <button class="form-control btn-default" type="reset">Resetten</button>
  34.                     <button class="form-control btn-default" type="button">Annuleren</button>
  35.                 </div>
  36.             </div>
  37.         </form>
  38.     <?php
  39.     $conn->close();
  40.     echo $footer;
  41.     ?>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement