Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.81 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org"
  3. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  4. layout:decorate="~{layout}">
  5. <head>
  6.     <meta charset="UTF-8">
  7.     <title>Peralatan Baru</title>
  8.  
  9. </head>
  10. <body>
  11.     <section layout:fragment="content" class="panel">
  12.         <form action="" method="post">
  13.             <div class="col-md-12">
  14.                 <section class="panel">
  15.                     <header class="panel-heading">
  16.                         <h2 class="panel-title">Peralatan Baru</h2>
  17.                     </header>
  18.                     <div class="panel-body">
  19.                         <div class="row">
  20.                             <div class="col-sm-12">
  21.                                 <div class="form-group">
  22.                                     <label class="control-label">Serial Number</label>
  23.                                     <input type="text" name="nama" placeholder="Serial Number" class="form-control">
  24.                                 </div>
  25.                             </div>
  26.                         </div>
  27.                         <div class="row">
  28.                             <div class="col-sm-12">
  29.                                 <div class="form-group">
  30.                                     <label class="control-label">Jenis Barang</label>
  31.                                     <select placeholder="Serial Number" name="nama" class="form-control">
  32.                                         <option value="">-</option>
  33.                                         <option value="">-</option>
  34.                                     </select>
  35.                                 </div>
  36.                             </div>
  37.                         </div>
  38.                     </div>
  39.                 </section>
  40.             </div>
  41.         </form>
  42.     </section>
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement