Advertisement
dhiforester

FormTambahPengaturanVclaim

Dec 18th, 2023 (edited)
666
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.26 KB | Software | 0 0
  1. <form action="javascript:void(0);" id="ProsesPengaturanVclaim" autocomplete="off">
  2.     <div class="row mb-3 mt-3">
  3.         <div class="col-md-4 mb-2">
  4.             <label for="profile_pengaturan">Nama Pengaturan</label>
  5.         </div>
  6.         <div class="col-md-8 mb-2">
  7.             <input type="text" name="profile_pengaturan" id="profile_pengaturan" class="form-control">
  8.         </div>
  9.     </div>
  10.     <div class="row mb-3 mt-3">
  11.         <div class="col-md-4 mb-2">
  12.             <label for="url_api">Url Service</label>
  13.         </div>
  14.         <div class="col-md-8 mb-2">
  15.             <input type="url" name="url_api" id="url_api" class="form-control">
  16.         </div>
  17.     </div>
  18.     <div class="row mb-3 mt-3">
  19.         <div class="col-md-4 mb-2">
  20.             <label for="cons_id">Cons ID</label>
  21.         </div>
  22.         <div class="col-md-8 mb-2">
  23.             <input type="text" name="cons_id" id="cons_id" class="form-control">
  24.         </div>
  25.     </div>
  26.     <div class="row mb-3 mt-3">
  27.         <div class="col-md-4 mb-2">
  28.             <label for="user_key">User Key</label>
  29.         </div>
  30.         <div class="col-md-8 mb-2">
  31.             <input type="text" name="user_key" id="user_key" class="form-control">
  32.         </div>
  33.     </div>
  34.     <div class="row mb-3 mt-3">
  35.         <div class="col-md-4 mb-2">
  36.             <label for="secret_key">Secret Key</label>
  37.         </div>
  38.         <div class="col-md-8 mb-2">
  39.             <input type="text" name="secret_key" id="secret_key" class="form-control">
  40.         </div>
  41.     </div>
  42.     <div class="row mb-3 mt-3">
  43.         <div class="col-md-4 mb-2">
  44.             <label for="kode_ppk">Kode PPK</label>
  45.         </div>
  46.         <div class="col-md-8 mb-2">
  47.             <input type="text" name="kode_ppk" id="kode_ppk" class="form-control">
  48.         </div>
  49.     </div>
  50.     <div class="row mb-3 mt-3">
  51.         <div class="col-md-4 mb-2">
  52.             <label for="status">Status</label>
  53.         </div>
  54.         <div class="col-md-8 mb-2">
  55.             <select name="status" id="status" class="form-control">
  56.                 <option value="">Pilihan</option>
  57.                 <option value="Active">Active</option>
  58.                 <option value="Non Active">Non Active</option>
  59.             </select>
  60.         </div>
  61.     </div>
  62. </form>
Tags: simrs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement