123456789101112131415161718192021222324252627 |
- <!doctype html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Untitled Document</title>
- </head>
- <body style="background-color: rgb(255, 255, 255)">
- <h2 style="color: slateblue">新增站点</h2>
- <form method="POST">
- 油站标识:
- <input type="text" name="stationid" id="stationid">
- 油站名称:
- <input type="text" name="stationname" id="stationname">
- <br>
- <br>
- <input type="button" class="query" id="query" value="确定" onclick="">
- <br>
- <input type="button" class="add" id="add" value="取消" onclick="">
- </form>
- </body>
- </html>
|