Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>NIN</title>
  6. <link rel="stylesheet" href="/static/style.css?v=1007"> <!-- เชื่อมโยงกับไฟล์ style.css -->
  7. <script src='https://kit.fontawesome.com/a076d05399.js'></script>
  8. </head>
  9. <body>
  10.  
  11. <div class="row">
  12. <div class="HE">NIN Form</div>
  13. </div>
  14. <div class="container">
  15.  
  16. <form>
  17. <div class="row">
  18. <button type="button" class="btn far fa-edit "
  19. onclick="document.getElementById('Edit').style.display = 'block'"></button>
  20. <!-- <button type="button" class="btn fas fa-check-double " onclick="Symptom()"> -->
  21.  
  22. </button>
  23. </div>
  24.  
  25. <!--CUSTOMER TYPE-->
  26.  
  27. <div class="row">
  28. <div class="col-25">
  29. <label for="Customer_Type"><b>Customer Type</b></label>
  30. </div>
  31. <div class="col-70">
  32. <select name="Customer_Type" onchange="{{test}}">
  33. <option value="">Select Customer Type...</option>
  34. {% for row in datacostomer %}
  35. <option value="{{row.0}}">{{row.1}}</option>
  36. {% endfor %}
  37. </select>
  38. </div>
  39.  
  40. </div>
  41.  
  42.  
  43.  
  44. </form>
  45. </div>
  46.  
  47. </body>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement