addstation.html 628 B

123456789101112131415161718192021222324252627
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Untitled Document</title>
  6. </head>
  7. <body style="background-color: rgb(255, 255, 255)">
  8. <h2 style="color: slateblue">新增站点</h2>
  9. <form method="POST">
  10. 油站标识:
  11. <input type="text" name="stationid" id="stationid">
  12. 油站名称:
  13. <input type="text" name="stationname" id="stationname">
  14. <br>
  15. <br>
  16. <input type="button" class="query" id="query" value="确定" onclick="">
  17. <br>
  18. <input type="button" class="add" id="add" value="取消" onclick="">
  19. </form>
  20. </body>
  21. </html>